Grace-marketplace grace-cli
Operate the optional `grace` CLI against a GRACE project. Use when you want to lint GRACE artifacts, explain/remediate lint issues, check autonomy readiness, inspect project or module health, inspect verification entries, resolve modules from names or file paths, inspect shared/public module context, or inspect file-local/private markup through `grace lint`, `grace status`, `grace module`, `grace verification`, and `grace file show`.
install
source · Clone the upstream repo
git clone https://github.com/osovv/grace-marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/osovv/grace-marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/grace/skills/grace/grace-cli" ~/.claude/skills/osovv-grace-marketplace-grace-cli && rm -rf "$T"
manifest:
plugins/grace/skills/grace/grace-cli/SKILL.mdsource content
Use the optional
grace CLI as a fast GRACE-aware read/query layer.
Prerequisites
- The
binary must be installed and available ongracePATH - The target repository should already use GRACE artifacts and markup
- Prefer
unless you are already in the project root--path <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
Use for a fast integrity snapshot across semantic markup, XML artifacts, and export/map drift.grace lint --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 --profile autonomous --path <project-root>
Use when a lint code appears in CI or review and you want the built-in explanation plus remediation guidance.grace lint --explain <code>
Use for a one-shot health report: artifact presence, codebase metrics, integrity snapshot, autonomy gate, recent changes, and the next safe action.grace status --path <project-root>
Use when you also want per-module health summaries in the same report.grace status --with modules --path <project-root>
Use to resolve module IDs from names, paths, dependencies, annotations, verification refs, or file-localgrace module find <query> --path <project-root>
.LINKS
Use to read the shared/public module view fromgrace module show <id-or-path> --path <project-root>
,development-plan.xml
, implementation steps, and linked files.knowledge-graph.xml
Use when you also need the module's verification excerpt.grace module show <id> --with verification --path <project-root>
Use for one module's implementation coverage, verification health, autonomy readiness, blockers, and next action.grace module health <id-or-path> --path <project-root>
Use to search verification entries by ID, module, priority, scenarios, test files, log markers, or commands.grace verification find <query> --path <project-root>
Use to read one verification entry with its linked module context.grace verification show <V-M-id-or-module> --path <project-root>
Use to read file-local/privategrace file show <path> --path <project-root>
,MODULE_CONTRACT
, andMODULE_MAP
.CHANGE_SUMMARY
Use when you also need function/type contracts and semantic block navigation.grace file show <path> --contracts --blocks --path <project-root>
Recommended Workflow
- Run
when you first need to understand the current project state.grace status - Run
when project-level health is not enough and you need module summaries.grace status --with modules - Run
when integrity or drift matters.grace lint - Run
before long autonomous execution.grace lint --profile autonomous - Run
when one issue needs targeted remediation guidance.grace lint --explain <code> - Run
to resolve the target module from the user's words, a stack trace, or a changed path.grace module find - Run
,grace module show
, andgrace module health
for the narrowed shared/public truth.grace verification show - Run
for the file-local/private truth.grace file show - 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
when another tool, script, or agent step needs machine-readable output.--json - Use
or--fail-on warnings
when the CLI output should gate CI.--fail-on errors - 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
is for shared/public module context.grace module show
is for file-local/private implementation context.grace file show- 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
skill after using the CLI to narrow scope.grace-*