Skip to content

Add agent-workflow-system mirrored bundle + marketplace entry#202

Open
1139030773-cmd wants to merge 9 commits into
hashgraph-online:mainfrom
1139030773-cmd:add-agent-workflow-system-marketplace
Open

Add agent-workflow-system mirrored bundle + marketplace entry#202
1139030773-cmd wants to merge 9 commits into
hashgraph-online:mainfrom
1139030773-cmd:add-agent-workflow-system-marketplace

Conversation

@1139030773-cmd

Copy link
Copy Markdown
Contributor

Add the Agent Workflow System plugin to the Codex marketplace so it shows up in /plugins.

Changes:

  • Mirrored bundle under plugins/1139030773-cmd/agent-workflow-system/ (45 files)
  • Marketplace entry in .agents/plugins/marketplace.json

About: 一套中文AI工作流系统,7个协作技能 + 行为规范宪法 + 会话恢复机制。
Codex & Claude Code 双平台,新手友好。
Repo: https://github.com/1139030773-cmd/agent-workflow-system

1139030773-cmd added 8 commits June 4, 2026 20:53
@
Add agent-workflow-system mirrored bundle + marketplace entry

- Add mirrored plugin bundle under plugins/1139030773-cmd/agent-workflow-system/
- Add entry in .agents/plugins/marketplace.json for Codex /plugins discovery
- Plugin: 一套中文AI工作流系统,7个协作技能,Codex & Claude Code 双平台
@

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request registers and introduces the 'Agent Workflow System' (智能工作流系统) as a Codex plugin, adding its core configuration, sub-skills, reference documentation, and artifact templates. Feedback on the changes highlights critical missing components, specifically the central orchestrator skill directory (workflow-system) and session recovery files (CLAUDE.md, RESUME.md, and .claude/) in the mirrored bundle. Additionally, several relative paths in BEHAVIOR_SPEC.md need to be updated with the correct skills/references/ prefix to ensure proper file resolution by the AI.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

"debugging",
"chinese"
],
"skills": "./skills/",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The workflow-system skill is described in the README.md and STATE_MACHINE.md as the central orchestrator ("总调度" / "总入口") responsible for routing requests to the appropriate sub-skills. However, there is no workflow-system directory under the skills/ folder in this PR.

Without this skill directory, the main entry point of the workflow system is missing, which will prevent the orchestrator from being loaded or executed by Codex. Please add the missing workflow-system skill directory (including its manifest.json, SKILL.md, and agent configuration).

Comment on lines +121 to +127
### 启用会话恢复(推荐)

将以下文件复制到你的项目中:
- `CLAUDE.md` — AI 在每个新会话中自动读取
- `RESUME.md` — AI 在工作过程中自动更新
- `.claude/hooks/session-end.ps1` — Windows 关窗口自动保存
- `.claude/hooks/session-end.sh` — Linux/Mac 关窗口自动保存

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The README instructs users to copy CLAUDE.md, RESUME.md, and the .claude/hooks/ scripts to enable the session recovery mechanism. However, these files are completely missing from the mirrored bundle (plugins/1139030773-cmd/agent-workflow-system/) added in this PR.

If a Codex user installs this plugin via the marketplace, they will not receive these crucial files, rendering the session recovery feature non-functional. Please ensure that CLAUDE.md, RESUME.md, and the .claude/ directory are included in the mirrored bundle so they are packaged with the plugin.


### 12.2 写入位置

`references/USAGE_FEEDBACK.md`。每个技能结束时追加。

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The relative path to USAGE_FEEDBACK.md is specified as references/USAGE_FEEDBACK.md. However, in the mirrored bundle, the references folder is located under skills/references/. This incorrect path will prevent the AI from locating and updating the friction log file. Please update the path to reflect the actual location in the bundle.

Suggested change
`references/USAGE_FEEDBACK.md`。每个技能结束时追加。
`skills/references/USAGE_FEEDBACK.md`。每个技能结束时追加。


### 13.4 Artifact 模板

参见 `references/artifacts/` 目录:

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The relative path to the artifacts directory is specified as references/artifacts/. In the mirrored bundle, this directory is located under skills/references/artifacts/. Please update the path so the AI can correctly locate the artifact templates.

Suggested change
参见 `references/artifacts/` 目录:
参见 `skills/references/artifacts/` 目录:

Comment on lines +445 to +446
- **证据链** 在恢复时追加恢复记录(见 EVIDENCE_CHAIN.md "会话恢复记录")。
- **跨会话恢复** 遵守 STATE_MACHINE.md 的恢复路由规则。

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The relative paths to EVIDENCE_CHAIN.md and STATE_MACHINE.md are missing the skills/references/ prefix. Please update them to the correct paths so the AI can resolve these files during session recovery.

Suggested change
- **证据链** 在恢复时追加恢复记录(见 EVIDENCE_CHAIN.md "会话恢复记录")。
- **跨会话恢复** 遵守 STATE_MACHINE.md 的恢复路由规则。
- **证据链** 在恢复时追加恢复记录(见 skills/references/EVIDENCE_CHAIN.md "会话恢复记录")。
- **跨会话恢复** 遵守 skills/references/STATE_MACHINE.md 的恢复路由规则。

@
Fix: PR hashgraph-online#202 review 问题修复

- 补 workflow-system 技能目录(入口调度器)
- 补 CLAUDE.md、RESUME.md、.claude/ 目录(会话恢复核心文件)
- 修 BEHAVIOR_SPEC.md 中 USAGE_FEEDBACK.md 路径
@
@1139030773-cmd

Copy link
Copy Markdown
Contributor Author

Hi! Thanks for the review feedback. All three issues have been addressed:

  1. ✅ Added missing workflow-system skill directory
  2. ✅ Added CLAUDE.md, RESUME.md, and .claude/ directory
  3. ✅ Fixed USAGE_FEEDBACK.md path reference

Could you please take another look when you have time? Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant