← ClaudeAtlas

ace-toollisted

Semantic codebase search, code indexing, and prompt enhancement via standalone CLI. Use when: (1) Semantic code search with natural language queries, (2) Code indexing for remote codebase retrieval, (3) Prompt enhancement with codebase context, (4) Before grep/find/glob operations for better accuracy, (5) Complex requirements clarification, (6) Large codebase navigation. Triggers: "search context", "enhance prompt", "find code that", "index project", "clarify requirements". IMPORTANT: Always use ace-tool BEFORE grep/find/glob for semantic-level code location.
Dianel555/DSkills · ★ 63 · AI & Automation · score 84
Install: claude install-skill Dianel555/DSkills
# ACE-Tool - Semantic Code Search & Prompt Enhancement High-performance semantic search, code indexing, and AI-powered prompt enhancement. Standalone CLI (no MCP dependency). ## Execution Methods ```bash # Prerequisites: pip install httpx tenacity # Environment: ACE_API_URL, ACE_API_TOKEN (optional for local fallback) # Index project for remote search (upload code blobs to ACE service) python scripts/ace_cli.py index -p /path/to/project # Search codebase with natural language (remote if API configured, else local fallback) python scripts/ace_cli.py search_context -p /path/to/project -q "function that handles authentication" # Enhance prompt (interactive mode - default, opens browser) python scripts/ace_cli.py enhance_prompt -p "implement login feature" -H "User: what auth method?\nAssistant: JWT" # Enhance prompt (non-interactive, JSON output) python scripts/ace_cli.py enhance_prompt --no-interactive -p "implement login feature" # Enhance prompt with project context (enables cloud retrieval for all endpoints) python scripts/ace_cli.py enhance_prompt -p "implement login feature" --project-root /path/to/project # Enhance prompt with specific endpoint python scripts/ace_cli.py --endpoint claude enhance_prompt -p "implement login feature" # Enhance prompt with codex endpoint python scripts/ace_cli.py --endpoint codex enhance_prompt -p "implement feature" # Check configuration python scripts/ace_cli.py get_config ``` ## Tool Routing Policy ### Prefer ACE-Tool Over Bui