用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/petar-djukic/coding-skills --skill make-work命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | make-work |
| description | Read `docs/VISION.yaml` (goals and boundaries), `docs/ARCHITECTURE.yaml` |
Apply this command workflow. Treat any text after its invocation as the command input.
Read docs/VISION.yaml (goals and boundaries), docs/ARCHITECTURE.yaml
(design and components), docs/road-map.yaml (release schedule and use-case
status), docs/constitutions/design.yaml (format rules), and the
product-requirements and use-case READMEs where they exist.
Then establish where the work actually stands. Treat the tracker and the roadmap as claims to verify, not as ground truth — a task that builds on "done" work fails when that work was never merged.
gh issue list --repo <owner>/<repo> --state all
For every release or closed issue that later work depends on:
gh issue view <n> --json stateReason, then check its
linked PRs).git log.mage status), trust it over
issue labels.Anything failing those checks is unbuilt regardless of tracker state — plan its implementation before anything that depends on it.
Run the consistency check if one exists (mage audit, or mage analyze where
it is named that way) to surface orphaned PRDs, use cases without test suites,
broken references, and use cases missing from the roadmap.
Then summarize: the problem the project solves, its architecture, what is
built versus in progress, which release is current and which of its use cases
remain, and the repo size from mage stats where that target exists.
Prioritize by release. Finish the earliest incomplete release's use cases
first; a later use case may be previewed when it shares functionality with the
current one. Map every issue to a use case in road-map.yaml — release 99.0
when unscheduled. Add to existing epics where they fit, propose new epics where
they do not, and say what must be built first and why.
Each proposed issue carries:
docs/) or code.Size code tasks at 300-700 production lines across no more than 5 files — finishable in one session, substantial enough to matter. Split larger features; combine trivial ones. No more than 10 tasks at a time.
Propose the breakdown and create nothing until we have agreed on it.
Then create each issue with /gh-issue-push rather than gh issue create: it
traces every file and field the change touches before drafting, and issues
written without that step miss cross-references. Link sub-issues to their parent:
gh api repos/<owner>/<repo>/issues/<parent>/sub_issues \
--method POST \
--field sub_issue_id=$(gh api repos/<owner>/<repo>/issues/<sub-number> --jq '.id')
After you implement work:
gh issue comment <id> --repo <owner>/<repo> --body "tokens: N"gh issue close <id> --repo <owner>/<repo>/gh-issue-push; note them for the user if not created in this session