| name | rust-cli-intake |
|---|---|
| description | Triage stage for the rust-cli skill family: classify the request as description, scaffold, extend, validate, or publish, confirm required inputs, load the shared rules, and hand off to the correct next phase. |
Use this stage when the current request needs routing or when you want to resume the rust-cli workflow from the earliest safe phase.
Finish this stage with:
- the work classified as
scaffold,extend,validate, orpublish - the work classified as
description,scaffold,extend,validate, orpublish - the required user inputs identified and, when available, assembled
- the shared constraints loaded from the constitution and the relevant instruction document
- an explicit handoff to the next stage skill
../../constitution.md../../instructions/new.md../../instructions/add-feature.md../../instructions/validate.md../../docs/release/skill-release-runbook.md../../.github/workflows/release.yml../../release/skill-release.config.json../../package.json
- The user asks for rust-cli help in a high-level way and the correct phase is not obvious yet.
- The user wants to create a new project but has not clearly supplied a valid skill name.
- The user wants to create a new project and the generated skill's description contract has not been approved yet.
- The user wants to add
streamorrepl, but the project path or feature is still unclear. - The user wants to update an existing generated skill's purpose, positioning, or other user-facing contract.
- The user wants validation, but the target project path still needs to be resolved.
- The user wants to publish, do a release dry run, rehearse the destination mirror, or check destination configuration.
description: the classified intent, generated skill scope, and the next stage that will consume the approved description contractscaffold:skill_name, plus optionalauthor,version, andrust_editionextend:project_pathandfeaturewherefeatureisstreamorreplvalidate:project_pathpublish: release mode (report_only,dry_run,rehearsal, orlive_release), current validation status, and any required destination configuration or credential context
- Read the user request and classify the intent as
description,scaffold,extend,validate, orpublish. - Load
../../constitution.mdbefore choosing a downstream phase so the runtime contract and compliance posture stay in scope. - Open the matching instruction document for the likely next stage and use it as the detailed source of truth.
- Confirm the required inputs for that path:
- For
description, verify the work creates a new generated skill or changes the generated skill's user-facing contract. - For
scaffold, verify the name is present, the approved description contract exists, and the work is intended to become a Rust CLI Skill project. - For
extend, verify bothproject_pathandfeature. - For
validate, verifyproject_path. - For
publish, verify whether the user wantsreport_only,dry_run,rehearsal, orlive_release, and whether the work should start with validation or can proceed directly to the publish stage.
- For
- Inspect the filesystem when it helps disambiguate the stage:
- missing target directory usually means
descriptionfollowed byscaffold - existing scaffolded project plus feature request means
extend - existing generated skill plus description-impacting request means
descriptionfollowed byextendorvalidate - explicit audit or post-change verification means
validate - release, dry-run, rehearsal, destination-config work, or final
post-validation closure means
publish
- missing target directory usually means
- Route to the next stage skill and carry forward the resolved inputs.
- Create request with no project directory yet -> route to
description. - Existing generated skill plus purpose/positioning change -> route to
description. - Existing scaffolded project plus
streamorreplrequest -> route toextend. - Audit or post-change verification request -> route to
validate. - Successful validation with no explicit release action -> route to
publishinreport_onlymode. - Mixed implementation and release request with unresolved project state ->
return to the earliest incomplete stage instead of skipping ahead to
publish.
This stage is complete only when one downstream phase is clearly selected and the next stage has the inputs it needs.
- Route to
../rust-cli-description/SKILL.mdwhenever the description contract must be created or refreshed. - Route to
../rust-cli-scaffold/SKILL.mdfor new project creation afterdescription. - Route to
../rust-cli-extend/SKILL.mdforstreamorreplwork. - Route to
../rust-cli-validate/SKILL.mdfor compliance checking. - Route to
../rust-cli-publish/SKILL.mdfor release, dry-run, rehearsal, or destination-config work.