/new-workspace
Create a workspace skeleton for a new project, client, or venture. Gathers details, creates directory with populated templates, validates generated files, populates dashboard, and updates main dashboard. Use when user says "new workspace", "new project", "new client setup".
$ npx -y skills add kbanc85/claudia --skill new-workspace --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/new-workspace
Context preview
The summary Claude sees to decide when to auto-load this skill.
Create a workspace skeleton for a new project, client, or venture. Gathers details, creates directory with populated templates, validates generated files, populates dashboard, and updates main dashboard. Use when user says "new workspace", "new project", "new client setup".
SKILL.md
new-workspace.SKILL.mdname: new-workspace
description: Create a workspace skeleton for a new project, client, or venture. Gathers details, creates directory with populated templates, validates generated files, populates dashboard, and updates main dashboard. Use when user says "new workspace", "new project", "new client setup".
effort-level: medium
New Workspace
Create a complete workspace skeleton for a new project, client engagement, or venture.
Trigger
- `/new-workspace [name]`
- "Set up a new workspace for..."
- "Create a project for..."
- "New client setup"
Process
1. Gather Details
Ask the user for the essentials (don't interrogate, keep it natural):
| Field | Question | Required | |-------|----------|----------| | **Name** | "What should we call this workspace?" | Yes | | **Type** | "Is this a client engagement, product, venture, or something else?" | Yes | | **Contact** | "Who's the main contact or sponsor?" | No | | **Phase** | "What phase are we starting in?" | No | | **Fee** | "Any fee or budget to track?" | No |
Generate a URL-safe slug from the name:
- Lowercase, hyphens for spaces
- Remove special characters
- Example: "Acme Corp Redesign" becomes `acme-corp-redesign`
2. Create Workspace Skeleton
Create the directory structure under `workspaces/`:
workspaces/{{slug}}/
├── Dashboard.md ← From _templates/Dashboard.md
├── Timeline.md ← From _templates/Timeline.md
├── Pipeline.md ← From _templates/Pipeline.md (if applicable)
├── meetings/ ← Empty, ready for meeting captures
├── deliverables/ ← Empty, ready for deliverable tracking
├── agreements/ ← Empty, ready for contracts
├── invoices/ ← Empty, ready for billing
└── interviews/ ← Empty, for assessment interviews (if applicable)**Template population:**
- Copy templates from `workspaces/_templates/`
- Replace `{{project}}` with the workspace name
- Replace `{{project-slug}}` with the slug
- Replace `{{client}}`, `{{sponsor}}` with provided values (or leave as placeholders)
- Replace `{{filesystem_root}}` with the workspace path
3. Validate Generated Files
Before proceeding, verify all generated markdown files:
- Open each generated `.md` file and verify all markdown tables have proper formatting:
- Header row, separator row, and data rows must each be on their own line
- No merged header+separator lines (corruption signature: `| text |------|` on same line)
- If any broken tables are found, fix them before proceeding
4. Populate Dashboard
Fill in the workspace Dashboard.md with:
- Project name and quick links
- Initial phase in the phase tracker
- Any known deliverables or obligations
- Dataview queries pointed at the right subdirectories
5. Create First Timeline Entry
Add an initial entry to Timeline.md:
## {{date}} - Workspace Created
- Workspace set up for {{name}}
- Initial phase: {{phase}}
- Contact: [[{{contact}}]]6. Update Main Dashboard (if exists)
If a main project dashboard exists (e.g., `Home.md` or a top-level dashboard), add a link to the new workspace.
7. Confirm
Show the user what was created:
**Workspace Created: {{name}}**
✓ Dashboard with phase tracker and dataview queries
✓ Timeline with creation entry
✓ Directory structure for meetings, deliverables, agreements
✓ All templates validated (no table corruption)
📂 Location: workspaces/{{slug}}/
What would you like to do first?
- Add a meeting or deliverable
- Set up phases in the dashboard
- Create an agreement from templateOutput Format
Keep it clean and actionable. Show what was created, where it lives, and what to do next.
Judgment Points
Ask for confirmation on:
- Workspace name and slug (before creating)
- Which templates to include (not all workspaces need all templates)
- Whether to update the main dashboard
Quality Checklist
- [ ] Slug is URL-safe and readable
- [ ] All templates populated with correct values
- [ ] All markdown tables render correctly (header, separator, and data rows on separate lines)
- [ ] Dataview queries point to correct subdirectories
- [ ] Timeline has initial entry
- [ ] Main dashboard updated (if applicable)
Read more
name: new-workspace description: Create a workspace skeleton for a new project, client, or venture. Gathers details, creates directory with populated templates, validates generated files, populates dashboard, and updates main dashboard. Use when user says "new workspace", "new project", "new client setup". effort-level: medium
New Workspace
Create a complete workspace skeleton for a new project, client engagement, or venture.
Trigger
- `/new-workspace [name]`
- "Set up a new workspace for..."
- "Create a project for..."
- "New client setup"
Process
1. Gather Details
Ask the user for the essentials (don't interrogate, keep it natural):
| Field | Question | Required | |-------|----------|----------| | **Name** | "What should we call this workspace?" | Yes | | **Type** | "Is this a client engagement, product, venture, or something else?" | Yes | | **Contact** | "Who's the main contact or sponsor?" | No | | **Phase** | "What phase are we starting in?" | No | | **Fee** | "Any fee or budget to track?" | No |
Generate a URL-safe slug from the name:
- Lowercase, hyphens for spaces
- Remove special characters
- Example: "Acme Corp Redesign" becomes `acme-corp-redesign`
2. Create Workspace Skeleton
Create the directory structure under `workspaces/`:
workspaces/{{slug}}/
├── Dashboard.md ← From _templates/Dashboard.md
├── Timeline.md ← From _templates/Timeline.md
├── Pipeline.md ← From _templates/Pipeline.md (if applicable)
├── meetings/ ← Empty, ready for meeting captures
├── deliverables/ ← Empty, ready for deliverable tracking
├── agreements/ ← Empty, ready for contracts
├── invoices/ ← Empty, ready for billing
└── interviews/ ← Empty, for assessment interviews (if applicable)**Template population:**
- Copy templates from `workspaces/_templates/`
- Replace `{{project}}` with the workspace name
- Replace `{{project-slug}}` with the slug
- Replace `{{client}}`, `{{sponsor}}` with provided values (or leave as placeholders)
- Replace `{{filesystem_root}}` with the workspace path
3. Validate Generated Files
Before proceeding, verify all generated markdown files:
- Open each generated `.md` file and verify all markdown tables have proper formatting:
- Header row, separator row, and data rows must each be on their own line
- No merged header+separator lines (corruption signature: `| text |------|` on same line)
- If any broken tables are found, fix them before proceeding
4. Populate Dashboard
Fill in the workspace Dashboard.md with:
- Project name and quick links
- Initial phase in the phase tracker
- Any known deliverables or obligations
- Dataview queries pointed at the right subdirectories
5. Create First Timeline Entry
Add an initial entry to Timeline.md:
## {{date}} - Workspace Created
- Workspace set up for {{name}}
- Initial phase: {{phase}}
- Contact: [[{{contact}}]]6. Update Main Dashboard (if exists)
If a main project dashboard exists (e.g., `Home.md` or a top-level dashboard), add a link to the new workspace.
7. Confirm
Show the user what was created:
**Workspace Created: {{name}}**
✓ Dashboard with phase tracker and dataview queries
✓ Timeline with creation entry
✓ Directory structure for meetings, deliverables, agreements
✓ All templates validated (no table corruption)
📂 Location: workspaces/{{slug}}/
What would you like to do first?
- Add a meeting or deliverable
- Set up phases in the dashboard
- Create an agreement from templateOutput Format
Keep it clean and actionable. Show what was created, where it lives, and what to do next.
Judgment Points
Ask for confirmation on:
- Workspace name and slug (before creating)
- Which templates to include (not all workspaces need all templates)
- Whether to update the main dashboard
Quality Checklist
- [ ] Slug is URL-safe and readable
- [ ] All templates populated with correct values
- [ ] All markdown tables render correctly (header, separator, and data rows on separate lines)
- [ ] Dataview queries point to correct subdirectories
- [ ] Timeline has initial entry
- [ ] Main dashboard updated (if applicable)
Terminal-based AI chief of staff. Remembers relationships, tracks commitments, helps you think strategically. Runs on Claude Code.
Repo: kbanc85/claudia
Other skills on claudia.
- /auto-research
Iteratively improve a local artifact (draft, document, page) by running a hill-climbing loop. The user names the artifact, the evaluator, and the budget. Claudia edits the artifact, scores it, keeps it if better or reverts if worse, repeats. Use when user says "iterate on this",
Open skill - /brain-monitor
Launch the Brain Monitor TUI, a real-time terminal dashboard for watching Claudia's memory system. Triggers on "brain monitor", "show dashboard", "memory dashboard", "terminal brain". See also: `brain` for a 3D graph view in the browser.
Open skill - /brain
Launch the Brain Visualizer, a real-time 3D view of memory and relationships. Triggers on "show your brain", "visualize memory", "open the brain", "memory graph". See also: `brain-monitor` for a terminal dashboard alternative.
Open skill - /build-team
Propose a personalized team of specialized agents based on the user's profile, goals, and how they actually work. Runs the proposal through an independent Checker, gates on the user's approval, and applies with rollback. Use when the user says "build my team", "set up my
Open skill - /capture-meeting
Process meeting notes or transcript to extract decisions, commitments, and insights. Use when user shares transcript or says "capture this meeting", "here are my notes from the call". See also: `meeting-prep` for pre-call briefings; `follow-up-draft` for post-meeting emails.
Open skill - /client-health
Health check across active client engagements showing status, deliverables, and concerns. Triggers on "how are my clients?", "client status", "client health check".
Open skill

