Loading...
Loading...
Semantic code search, relationship mapping, and codebase intelligence. Provides deep code analysis including symbol search, dependency tracking, change impact analysis, and codebase Q&A.
npx skill4agent add winsorllc/upgraded-carnival code-intelligencecd /job/.pi/skills/code-intelligence
npm installnode index.js --scan /path/to/project# Find code related to authentication
node search.js "authentication middleware"
# Find where database connections are established
node search.js "database connection setup"
# Search with filters
node search.js "user validation" --type function --ext js,ts# What depends on this file?
node deps.js --dependents src/utils/api.js
# What does this file import?
node deps.js --imports src/utils/api.js
# Show full dependency chain
node deps.js --chain src/app.js# Analyze impact of modifying a function
node impact.js src/utils/auth.js --function verifyToken
# Check impact of file changes
node impact.js src/config/database.jsnode ask.js "Where is the JWT secret configured?"
node ask.js "How does error handling work in this project?"
node ask.js "What functions use the database connection?"# JSON output (for piping to other tools)
node search.js "auth" --json
# Formatted text (default)
node search.js "auth".code-intelligence/index.dbgraph.jsoncache/.code-intelligence/.gitignore