MEMORY/ARCHIVE/skills-deprecated/mcp-access-validator/SKILL.md
<!-- CONTENT_HASH: 52686a4a44816ad79480c76cc0d51ba113ac0350b2eb871b42e9310030b43394 --> **required_canon_version:** >=3.0.0 # MCP Access Validator **Skill ID:** `mcp-access-validator` **Version:** 1.0.0 **Status:** Deprecated > **DEPRECATED:** This skill has been consolidated into `mcp-toolkit`. > Use `{"operation": "validate_access", ...}` with the mcp-toolkit instead. **Tags:** mcp, governance, validation, token-efficiency ## Purpose Prevents token waste by validating that agents use th
npx skillsauth add reneromero08/agent-governance-system MEMORY/ARCHIVE/skills-deprecated/mcp-access-validatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
required_canon_version: >=3.0.0
Skill ID: mcp-access-validator
Version: 1.0.0
Status: Deprecated
DEPRECATED: This skill has been consolidated into
mcp-toolkit. Use{"operation": "validate_access", ...}with the mcp-toolkit instead. Tags: mcp, governance, validation, token-efficiency
Prevents token waste by validating that agents use the MCP server's existing tools instead of writing custom database queries or manual file inspection. This skill enforces the "MCP-first" principle for all cortex access.
Agents waste tokens by:
cortex_queryThis violates the catalytic computing principle of token efficiency and bypasses the governance layer.
The MCP Access Validator skill:
{
"agent_action": "string describing what the agent is trying to do",
"agent_code_snippet": "optional code the agent wrote",
"files_accessed": ["list of files the agent accessed manually"],
"databases_queried": ["list of databases the agent queried directly"]
}
{
"validation_passed": "boolean",
"token_waste_detected": "boolean",
"recommended_mcp_tool": "string",
"tool_usage_example": "object",
"estimated_token_savings": "number",
"audit_entry": "object"
}
Agent Action: "I need to check what's in the system1.db database"
Agent Code: import sqlite3; conn = sqlite3.connect('CORTEX/_generated/system1.db'); cursor = conn.execute('SELECT * FROM symbols')
Validation Result:
token_waste_detected: truerecommended_mcp_tool: cortex_querytool_usage_example: cortex_query({"query": "symbols"})estimated_token_savings: 95%Agent Action: "I want to read the CONTRACT.md file"
Agent Code: open('LAW/CANON/CONTRACT.md').read()
Validation Result:
token_waste_detected: truerecommended_mcp_tool: canon_readtool_usage_example: canon_read({"file": "CONTRACT"})estimated_token_savings: 90%The skill works by:
This skill directly supports:
LAW/CONTRACTS/_runs/mcp_logs/)If the MCP server is not accessible, the skill will:
See fixtures/ directory for test cases covering:
This skill should be updated when:
session-info-validator: Validates ADR-021 compliancecortex-query-optimizer: Optimizes MCP tool usagetoken-efficiency-auditor: Comprehensive token usage analysisrequired_canon_version: >=3.0.0
development
<!-- CONTENT_HASH: b22de257a144f83b390075074e3d6a4552ecbc1ec53fc5d4960c6e76dc9807dd --> # Skill: swarm-orchestrator **Version:** 0.1.0 **Status:** Active **required_canon_version:** ">=3.0.0 <4.0.0" **canon_version:** "3.0.0" # Swarm Orchestrator Launches and coordinates Governor + Ant Workers. ## Usage ```bash # Launch Governor python scripts/poll_and_execute.py --role Governor # Launch Ant Workers python scripts/poll_and_execute.py --role Ant-1 python scripts/poll_and_execute.py --role A
tools
<!-- CONTENT_HASH: 9bd07a4ed03d6eea49673a43682a62ca7df8b0cabb7ff424ac91cd35e9e7bea7 --> # Skill: swarm-directive **Version:** 0.1.0 **Status:** Draft **required_canon_version:** ">=2.8.0 <3.0.0" # Swarm Directive Skill Send tasks to your CATALYTIC-DPT swarm from Claude Code, Kilo CLI, or Cline CLI. ## Quick Start ### Option 1: Direct CLI Command (Simplest) ```bash cd "d:\CCC 2.0\AI\agent-governance-system" # Create input cat > /tmp/swarm_task.json << 'EOF' { "directive": "Analyze the
tools
<!-- CONTENT_HASH: 0f69dfe537f3e6cd8b1fdb353c9ab7c031ef8b08379fde8a98c137bb604d799d --> # Qwen CLI - Local AI Assistant **Version:** 1.0.0 **Status:** Active **Required_Canon_Version:** >=2.0.0 **Purpose**: Provides a local CLI interface to Qwen 7B via Ollama for fast, offline AI assistance. **Model**: Qwen2.5 7B (via Ollama) **Use Cases**: - Quick code questions without cloud API costs - Offline development assistance - Fast prototyping and testing - Private/sensitive code analysis ## F
development
<!-- CONTENT_HASH: 7b643dca3adc4d38de7030cb1e962a5130ea4b36ae04ad4bf97ed8889de2a3dc --> # Skill: governor **Version:** 0.1.0 **Status:** Active **required_canon_version:** ">=3.0.0 <4.0.0" **canon_version:** "3.0.0" # Governor The Conductor - analyzes, decomposes, and dispatches tasks to Ant Workers. ## Usage ```bash python scripts/run.py input.json output.json ``` ## Input Schema ```json { "gemini_prompt": "Analyze D:/path/to/files and summarize", "task_id": "analyze-001", "command