Add missing command stubs and expand onboard skill (#82) - #89
Merged
Conversation
Create .md routing files in .agents/commands/ for skills that were previously only accessible via the skill system. Each stub includes frontmatter (name, description, skill, category) and invokes the corresponding skill. Commands added: - Onboarding: adopt, onboard, skill-improve, skill-test - Design: art-bible, asset-audit, asset-spec, balance-check, consistency-check, content-audit, ux-design, ux-review - Architecture: propagate-design-change - QA: automated-smoke-test, perf-profile, playtest-report - Prototyping: hybrid-prototype - Release: changelog, estimate, gate-check, localize, patch-notes, scope-check - Ops: tech-debt Improves discoverability — users can now find these via /slash-command autocomplete in OpenCode. Closes #82 (task 1 of 2)
Increase onboard skill from 2.7KB to 10KB to match the quality bar of peer skills like /start and /explore. Changes: - Add 'question' to allowed-tools for interactive role selection - Add comprehensive error handling for missing files (AGENTS.md, agent definitions, directories) - Add edge case coverage (no argument, unrecognized roles, empty projects, git unavailable) - Add detailed scanning rules per role (programmers, designers, narrative, QA, production, artists) - Add structured document template with required sections - Add role-specific next steps and collaborative protocol The skill now gracefully handles missing data, asks for clarification when needed, and provides actionable guidance tailored to each role. Closes #82 (task 2 of 2)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #82
Summary
Adds 24 command stubs for user-invocable skills that were previously only accessible via the skill system, and expands the onboard skill to match the quality bar of peer skills.
Changes
Task 1: Command Stubs (commit e487dd3)
Create
.mdrouting files in.agents/commands/for 24 missing skills:Each stub follows the existing pattern with frontmatter (name, description, skill, category) and body
Invokes/skill-nameskill.Task 2: Onboard Skill Expansion (commit 05fd701)
Expand onboard skill from 2.7KB to 10KB:
questionto allowed-tools for interactive role selectionTesting
.agents/commands/README.md/start,/explore)