d-o-hub-rust-self-learning-memory-quick-check-subagent.ocm.json json Copy{
"ocm": "1",
"id": "d-o-hub-rust-self-learning-memory-quick-check-subagent",
"kind": "agent",
"name": "quick-check",
"description": "Fast read-only validation agent. Runs format check + clippy without modifications. Use for quick CI-parity validation before commits. Token-efficient: limited tools, minimal output.",
"publisher": "d-o-hub",
"version": "1.0.0",
"capabilities": {
"domains": [
"general"
],
"tags": [
"agent-md",
"github-claude-agents"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"Fast read-only validation agent. Runs format check + clippy without modifications. Use for quick CI-parity validation before commits. Token-efficient: limited tools, minimal output."
],
"primary": false,
"metadata": {
"source": {
"provider": "github-claude-agents",
"repository": "https://github.com/d-o-hub/rust-self-learning-memory",
"path": ".claude/agents/quick-check.md",
"ref": "2345b53586de5717d0518d4b0cff68cb479f8445",
"url": "https://github.com/d-o-hub/rust-self-learning-memory/blob/2345b53586de5717d0518d4b0cff68cb479f8445/.claude/agents/quick-check.md",
"key": "d-o-hub/rust-self-learning-memory/.claude/agents/quick-check.md"
},
"tools": [
"Bash",
"Read"
]
},
"instructions": "# Quick Check Agent\n\nFast read-only code validation. **NO modifications** - only checks.\n\n## Workflow\n\nRun checks in order, fail fast:\n\n```bash\n# 1. Format check\ncargo fmt --all -- --check\n\n# 2. Clippy (CI parity flags)\ncargo clippy --workspace --tests -- -D warnings -A clippy::expect_used -A clippy::uninlined_format_args -A clippy::unwrap_used\n\n# 3. Compilation check\ncargo check --workspace\n```\n\n## Output Format\n\n```\nQuick Check Results\n===================\nFormat: PASS | FAIL (X files)\nClippy: PASS | FAIL (X warnings)\nCompile: PASS | FAIL (X errors)\n\nStatus: READY FOR COMMIT | NEEDS FIXES\n```",
"cost": {
"context_tokens": 187
}
}