grace-cli
Use the optional grace CLI as a fast GRACE-aware read/query layer.
Prerequisites
- The
gracebinary must be installed and available onPATH - The target repository should already use GRACE artifacts and markup
- Prefer
--path <project-root>unless you are already in the project root
If the CLI is missing, or the repository is not a GRACE project, say so and fall back to reading the relevant docs and code directly.
Choose the Right Command
grace lint --path <project-root>Use for a fast integrity snapshot across semantic markup, XML artifacts, and export/map drift.grace lint --profile autonomous --path <project-root>Use before long agent runs to verify that operational packets, verification entries, and observable evidence are strong enough for autonomous execution.grace lint --explain <code>Use when a lint code appears in CI or review and you want the built-in explanation plus remediation guidance.grace status --path <project-root>Use for a one-shot health report: artifact presence, codebase metrics, integrity snapshot, autonomy gate, recent changes, and the next safe action.grace status --with modules --path <project-root>Use when you also want per-module health summaries in the same report.grace module find <query> --path <project-root>Use to resolve module IDs from names, paths, dependencies, annotations, verification refs, or file-localLINKS.grace module show <id-or-path> --path <project-root>Use to read the shared/public module view fromdevelopment-plan.xml,knowledge-graph.xml, implementation steps, and linked files.grace module show <id> --with verification --path <project-root>Use when you also need the module's verification excerpt.grace module health <id-or-path> --path <project-root>Use for one module's implementation coverage, verification health, autonomy readiness, blockers, and next action.grace verification find <query> --path <project-root>Use to search verification entries by ID, module, priority, scenarios, test files, log markers, or commands.grace verification show <V-M-id-or-module> --path <project-root>Use to read one verification entry with its linked module context.grace file show <path> --path <project-root>Use to read file-local/privateMODULE_CONTRACT,MODULE_MAP, andCHANGE_SUMMARY.grace file show <path> --contracts --blocks --path <project-root>Use when you also need function/type contracts and semantic block navigation.
Recommended Workflow
- Run
grace statuswhen you first need to understand the current project state. - Run
grace status --with moduleswhen project-level health is not enough and you need module summaries. - Run
grace lintwhen integrity or drift matters. - Run
grace lint --profile autonomousbefore long autonomous execution. - Run
grace lint --explain <code>when one issue needs targeted remediation guidance. - Run
grace module findto resolve the target module from the user's words, a stack trace, or a changed path. - Run
grace module show,grace module health, andgrace verification showfor the narrowed shared/public truth. - Run
grace file showfor the file-local/private truth. - Read the underlying XML or source files only for the narrowed scope that still needs deeper evidence.
Output Guidance
- Use default text output for quick review and direct user-facing summaries.
- Use
--jsonwhen another tool, script, or agent step needs machine-readable output. - Use
--fail-on warningsor--fail-on errorswhen the CLI output should gate CI. - Treat CLI output as navigation help, not as a replacement for the real XML and source files when exact evidence is required.
Public/Private Rule
grace module showis for shared/public module context.grace file showis for file-local/private implementation context.- If shared docs and file-local markup disagree, call out the drift instead of silently trusting one side.
Important
- The CLI is a companion to the GRACE skills, not a replacement for them.
- Prefer this skill when the task is to inspect, navigate, or lint a GRACE project quickly through the CLI.
- For methodology design, execution planning, refresh, review, or fixes, route to the appropriate
grace-*skill after using the CLI to narrow scope.
More from osovv/grace-marketplace
grace-explainer
Complete GRACE methodology reference. Use when explaining GRACE to users, onboarding new projects, or when you need to understand the GRACE framework - its principles, semantic markup, knowledge graphs, contracts, testing, and unique tag conventions.
48grace-multiagent-execute
Execute a GRACE development plan in controller-managed parallel waves with selectable safety profiles, verification-plan excerpts, batched shared-artifact sync, and scoped reviews.
29grace-execute
Execute the full GRACE development plan step by step with controller-managed context packets, verification-plan excerpts, scoped reviews, level-based verification, and commits after validated sequential steps.
27grace-status
Show the current health status of a GRACE project. Use to get an overview of project artifacts, codebase metrics, knowledge graph health, verification coverage, and suggested next actions.
26grace-fix
Debug an issue using GRACE semantic navigation. Use when encountering bugs, errors, or unexpected behavior - navigate through the graph, verification plan, and semantic blocks to analyze the mismatch and apply a targeted fix.
26grace-refresh
Synchronize GRACE shared artifacts with the actual codebase. Use targeted refresh after controlled waves, or full refresh after refactors and when you suspect wider drift between the graph, verification plan, and code.
26