Askit build command
Skill product-on-purpose/agent-skills-toolkit/skills/askit-build-command
Creates and improves Claude slash commands (commands/<name>.md) that map to a skill, to the Advanced Skill Library Standard. Use when you need to give a skill an explicit /command entry point or raise an existing command's conformance.From its SKILL.md
npx -y skills add product-on-purpose/agent-skills-toolkit --skill askit-build-commandAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 1 command, including `node scripts/evaluate.mjs . --json`.
SKILL.md
2.5 KB, 553 tokens by cl100k_base, as published. Nobody here has run it
askit-build-command
Purpose
Author conformant commands. Two modes: create scaffolds a new commands/<name>.md that maps to an existing skill; improve raises an existing command toward the quality bar. On Codex a command is realized as its backing skill (Standard sec 3.2 parity), so this skill emits no Codex artifact. Follows the shared builder pattern. Authoring depth is in references/authoring-commands.md.
When to use
When the user asks to create, scaffold, or improve a slash command for a skill.
create mode
- Brief interview: the command name (kebab-case, becomes
/name), the skill (or workflow) it maps to, optional args, and a description mirroring the backing skill's intent. Skip if provided in context. - Copy
templates/command.mdintocommands/<name>.md. - Fill the frontmatter:
description(what AND when; Standard sec 8.1);maps-toequal to the backing skill or workflow name; optionalargument-hint/allowed-tools/model;metadata.version. The filename is the command name (nonamekey). Write a body that invokes the backing skill, passing$ARGUMENTS. - Verify the
maps-totarget exists (a skill inskills/or a workflow in_workflows/). - Register the command in
library.jsoncomponents.commandsas{ name, path, version, tier, status }. - Assess with
node scripts/evaluate.mjs . --jsonand iterate until 0 errors (S3 components index + S7 command-contract must be clean).
improve mode
- Run
node scripts/evaluate.mjs . --jsonand read the report. - For each finding: an S3 error -> declare/undeclare the command in
components.commandsto match disk; an S7 error -> add the missingmaps-to, fix amaps-tothat does not resolve, or add a missingdescription. For any other finding, read its message and apply the fix it states. - Re-run evaluate to confirm.
Scope
Claude-native: a command is commands/<name>.md. Codex realizes a command as its backing skill (Standard sec 3.2), so there is no Codex artifact to generate; the backing skill is the invocable form on Codex. A command MUST map to exactly one skill or workflow.
What ships with it: 3 files
6.7 KB alongside SKILL.md
examples/
references/
- authoring-commands.md1.4 KB
- README.md590 B