← ClaudeAtlas

grepai-workspaceslisted

Configure multi-project workspaces in GrepAI. Use this skill for monorepos and multiple related projects.
NNIIKKKKII/grepai-skills · ★ 2 · AI & Automation · score 75
Install: claude install-skill NNIIKKKKII/grepai-skills
# GrepAI Workspaces This skill covers using GrepAI workspaces to manage multiple related projects with a unified search index. ## When to Use This Skill - Working with monorepos - Searching across multiple related projects - Managing microservices architecture - Organizing large codebases ## What are Workspaces? Workspaces allow you to: - Group multiple projects together - Search across all projects at once - Or search specific projects within the workspace - Share configuration across projects ## Creating a Workspace ```bash grepai workspace create my-workspace ``` Output: ``` ✅ Workspace 'my-workspace' created Location: ~/.grepai/workspaces/my-workspace/ Next: Add projects with 'grepai workspace add' ``` ## Adding Projects ```bash # Add first project grepai workspace add my-workspace /path/to/frontend # Add more projects grepai workspace add my-workspace /path/to/backend grepai workspace add my-workspace /path/to/shared-lib ``` Output: ``` ✅ Added '/path/to/frontend' to workspace 'my-workspace' Projects in workspace: 1. frontend (/path/to/frontend) Run 'grepai watch --workspace my-workspace' to index all projects. ``` ## Listing Workspaces ```bash grepai workspace list ``` Output: ``` 📁 Workspaces 1. my-workspace - Projects: 3 - Status: Not indexed 2. work-projects - Projects: 5 - Status: Indexed (updated 2h ago) ``` ## Viewing Workspace Details ```bash grepai workspace show my-workspace ``` Output: ``` 📁 Workspace: my-wor