COMMAND
Surface and validate Claude's hidden assumptions about the project for user confirmation
Reference for: Common Ground Load when: Storage operations, project identification, file format
> /plugin marketplace add Jeffallan/claude-skills > /plugin install fullstack-dev-skills@fullstack-dev-skills
How it fires
How this command gets triggered: by you, by Claude, or both.
/file-managementContext preview
What this command does when you run it.
Reference for: Common Ground Load when: Storage operations, project identification, file format
> Reference for: Common Ground > Load when: Storage operations, project identification, file format
---
Ground files are stored in the user's Claude home directory:
~/.claude/common-ground/
├── index.md # Global registry of all projects
└── {project-id}/
├── COMMON-GROUND.md # Human-readable assumptions
├── ground.index.json # Machine-readable index
└── archive/
└── {timestamp}-{reason}.md # Archived versions (future)---
git remote get-url origin 2>/dev/null
**Example outputs:**
**Normalization rules:** 1. Remove protocol prefix (`https://`, `git@`) 2. Remove `.git` suffix 3. Replace `:` with `/` for SSH URLs 4. Use as directory name (URL-safe characters)
If no git remote found:
pwd
**Example:**
**Normalization rules:** 1. Prefix with `local/` 2. Replace `/` with `-` 3. Remove leading slash
---
Located at: `~/.claude/common-ground/index.md`
# Common Ground: Project Registry
Last Updated: {timestamp}
## Tracked Projects
| Project | ID | Assumptions | Last Check |
|---------|----|-----------:|------------|
| {name} | {project_id} | {count} | {date} |
---
*Auto-generated by /common-ground command*---
Located at: `~/.claude/common-ground/{project_id}/COMMON-GROUND.md`
# Project Common Ground
**Project:** {project_name}
**Project ID:** {project_id}
**Created:** {created_timestamp}
**Last Updated:** {updated_timestamp}
---
## ESTABLISHED
High confidence assumptions. Treat as premises.
### {id}: {title}
- **Type:** {stated|inferred|assumed}
- **Assumption:** {description}
- **Source:** {evidence or citation}
- **Validated:** {date}
- **Context:** {when this applies}
---
## WORKING
Medium confidence. Use but flag if contradicted.
### {id}: {title}
- **Type:** {stated|inferred|assumed}
- **Assumption:** {description}
- **Source:** {evidence or citation}
- **Validated:** {date}
- **Context:** {when this applies}
---
## OPEN
Low confidence. Ask before assuming.
### {id}: {title}
- **Type:** {stated|inferred|assumed|uncertain}
- **Assumption:** {description}
- **Source:** {evidence or citation}
- **Validated:** {date}
- **Context:** {when this applies}
---
## History
| Date | Action | ID | Details |
|------|--------|------|---------|
| {date} | {Created/Promoted/Demoted/Archived} | {id} | {details} |
---
*Managed by /common-ground command*Format: `A{number}` (e.g., A001, A002, A003)
---
Located at: `~/.claude/common-ground/{project_id}/ground.index.json`
{
"version": "1.0",
"project_id": "{project_id}",
"project_name": "{human_readable_name}",
"created": "{ISO_timestamp}",
"last_updated": "{ISO_timestamp}",
"next_id": 4,
"assumptions": [
{
"id": "A001",
"title": "{short_title}",
"type": "stated|inferred|assumed|uncertain",
"tier": "ESTABLISHED|WORKING|OPEN",
"assumption": "{full_description}",
"source": "{evidence}",
"validated": "{ISO_date}",
"context": "{when_applies}",
"created": "{ISO_timestamp}",
"history": [
{
"date": "{ISO_timestamp}",
"action": "created|promoted|demoted",
"from_tier": null,
"to_tier": "WORKING",
"reason": "{optional}"
}
]
}
],
"archived": []
}| Field | Type | Description | |-------|------|-------------| | `version` | string | Schema version for migrations | | `project_id` | string | Unique project identifier | | `project_name` | string | Human-readable project name | | `next_id` | number | Next assumption ID to assign | | `assumptions` | array | Active assumptions | | `archived` | array | Archived assumptions (future) |
---
1. Check if `~/.claude/common-ground/` exists, create if not 2. Create `{project_id}/` directory 3. Write `COMMON-GROUND.md` from template 4. Write `ground.index.json` with empty assumptions 5. Update global `index.md`
1. Read `ground.index.json` 2. Apply changes (add/promote/demote) 3. Update `last_updated` timestamp 4. Regenerate `COMMON-GROUND.md` from index.json 5. Update global `index.md` counts
1. Check if `{project_id}/ground.index.json` exists 2. If exists, parse JSON and return 3. If not exists, return null (trigger fresh start)
---
---
| Scenario | Action | |----------|--------| | No home directory access | Warn user, suggest alternate path | | C
67 Specialized Skills for Full-Stack Developers. Transform Claude Code into your expert pair programmer.
Repo: Jeffallan/claude-skills
Surface and validate Claude's hidden assumptions about the project for user confirmation
Reference for: Common Ground Load when: Classifying assumptions, determining type or tier
Reference for: Common Ground Load when: Using --graph flag, generating mermaid diagrams
Approve synthesis findings and create implementation tickets from discovery
Create a discovery document for research/customer discovery epics
Synthesize discovery findings into a consolidated analysis document with proposed tickets