Add agent-workflow-system mirrored bundle + marketplace entry#202
Add agent-workflow-system mirrored bundle + marketplace entry#2021139030773-cmd wants to merge 9 commits into
Conversation
There was a problem hiding this comment.
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/", |
There was a problem hiding this comment.
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).
| ### 启用会话恢复(推荐) | ||
|
|
||
| 将以下文件复制到你的项目中: | ||
| - `CLAUDE.md` — AI 在每个新会话中自动读取 | ||
| - `RESUME.md` — AI 在工作过程中自动更新 | ||
| - `.claude/hooks/session-end.ps1` — Windows 关窗口自动保存 | ||
| - `.claude/hooks/session-end.sh` — Linux/Mac 关窗口自动保存 |
There was a problem hiding this comment.
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`。每个技能结束时追加。 |
There was a problem hiding this comment.
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.
| `references/USAGE_FEEDBACK.md`。每个技能结束时追加。 | |
| `skills/references/USAGE_FEEDBACK.md`。每个技能结束时追加。 |
|
|
||
| ### 13.4 Artifact 模板 | ||
|
|
||
| 参见 `references/artifacts/` 目录: |
There was a problem hiding this comment.
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.
| 参见 `references/artifacts/` 目录: | |
| 参见 `skills/references/artifacts/` 目录: |
| - **证据链** 在恢复时追加恢复记录(见 EVIDENCE_CHAIN.md "会话恢复记录")。 | ||
| - **跨会话恢复** 遵守 STATE_MACHINE.md 的恢复路由规则。 |
There was a problem hiding this comment.
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.
| - **证据链** 在恢复时追加恢复记录(见 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 路径 @
|
Hi! Thanks for the review feedback. All three issues have been addressed:
Could you please take another look when you have time? Thanks! |
Add the Agent Workflow System plugin to the Codex marketplace so it shows up in
/plugins.Changes:
plugins/1139030773-cmd/agent-workflow-system/(45 files).agents/plugins/marketplace.jsonAbout: 一套中文AI工作流系统,7个协作技能 + 行为规范宪法 + 会话恢复机制。
Codex & Claude Code 双平台,新手友好。
Repo: https://github.com/1139030773-cmd/agent-workflow-system