Autonomous research agent with web search, source analysis, and report synthesis. Built on Pi agent core. Available as CLI, programmatic API, and MCP server. Features: - 4 built-in tools: web_search, read_url, save_note, synthesize_report - CLI with TUI and print modes - Programmatic API via ResearchAgent class - MCP server with 3 tools: research, quick_search, read_url - Skills system for custom research behavior - Automatic .env file loading for API keys - Configurable max turns, output formats (markdown/JSON/bullet) - Automatic report saving to research-output/
45 lines
476 B
Plaintext
45 lines
476 B
Plaintext
# Build outputs
|
|
dist/
|
|
*.tsbuildinfo
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Test coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Environment files (keep .env.example)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Research output (user-specific)
|
|
research-output/
|
|
|
|
# IDE and editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|
|
*.orig
|
|
|
|
# MCP auth tokens (if stored locally)
|
|
.mcp-tokens/
|