feat(skills): enhance Verification-Before-Completion with MAXSIM integration#16
feat(skills): enhance Verification-Before-Completion with MAXSIM integration#16maystudios wants to merge 1 commit intomainfrom
Conversation
…e format and MAXSIM integration Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Updates the “verification-before-completion” skill template to better describe how verification should be performed in MAXSIM-driven workflows, including a new frontmatter field intended for Claude Code compatibility.
Changes:
- Added
context: forkto the skill frontmatter. - Replaced the brief MAXSIM section with a more detailed “Integration with MAXSIM” guide (context loading, verify/done usage, STATE.md tracking, artifact references).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| When verifying within a MAXSIM project, load project context: | ||
|
|
||
| ```bash | ||
| node ~/.claude/maxsim/bin/maxsim-tools.cjs skill-context verification-before-completion |
There was a problem hiding this comment.
The documentation instructs running maxsim-tools.cjs skill-context ..., but skill-context is not a supported maxsim-tools command (it doesn’t exist in the CLI command registry). This will fail for users; please update this section to use an existing command/workflow that provides the needed phase/plan context (or add/ship the missing command if that’s the intent).
| node ~/.claude/maxsim/bin/maxsim-tools.cjs skill-context verification-before-completion | |
| # From your MAXSIM project root, run the command your project uses | |
| # to print the current phase, active plan path, and artifact locations. | |
| # For example, you can inspect available commands with: | |
| node ~/.claude/maxsim/bin/maxsim-tools.cjs --help |
| - Load `.planning/phases/{current}/PLAN.md` for task `<verify>` blocks | ||
| - Surface `.planning/phases/{current}/VERIFICATION.md` if it exists — check prior verification results |
There was a problem hiding this comment.
The artifact paths here don’t match MAXSIM’s established phase/plan naming conventions (plans are typically {phase}-{plan}-PLAN.md under .planning/phases/<phase_dir>/, and verification files are *-VERIFICATION.md). As written, .planning/phases/{current}/PLAN.md / .../VERIFICATION.md is likely to point to non-existent files; suggest documenting the glob/pattern or using the phase directory + plan filename returned by init/context commands.
| - Load `.planning/phases/{current}/PLAN.md` for task `<verify>` blocks | |
| - Surface `.planning/phases/{current}/VERIFICATION.md` if it exists — check prior verification results | |
| - Load the plan file for the current phase (typically `{phase}-{plan}-PLAN.md` under `.planning/phases/<phase_dir>/`) for task `<verify>` blocks, using the phase directory and plan filename returned by MAXSIM init/context commands | |
| - Surface any `*-VERIFICATION.md` file in the same phase directory, if it exists — check prior verification results |
Summary
context: forkto skill frontmatter for native Claude Code formatTest plan
🤖 Generated with Claude Code