From sombra
Pick up work on a project or feature by loading its living tracker from Sombra. Shows progress and highlights what's next. Adapts to context — uses git awareness in code environments, plain status elsewhere. Use when starting a session to continue previous work, or "where was I", "resume", "pick up", "what's next".
How this skill is triggered — by the user, by Claude, or both
Slash command
/sombra:pickup [project name, feature name, or branch — defaults to current branch if in a git repo]When to use
pick up, pickup, resume, where was I, continue, load project, pick up where I left off, what's next, what's remaining
[project name, feature name, or branch — defaults to current branch if in a git repo]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Reconnect a session to its living project or spec stored in Sombra.
Reconnect a session to its living project or spec stored in Sombra.
/sombra:project (general) or /sombra:spec (code).Jump straight into the workflow below. If a Sombra tool call fails with an auth or connection error, guide the user to check /mcp for their connection status, or visit sombra.so/mcp for setup instructions.
Determine what to search for:
$ARGUMENTS is provided, search for thatgit branch --show-current as a search termSearch Sombra:
search_artifacts for the project/branch name (appears in ## Meta)browse_collections and scan names for a matchIf multiple matches, read each collection's context and check Meta. Ask the user if ambiguous.
If nothing found, suggest creating one with /sombra:project or /sombra:spec.
Read the collection context with read_collection_context. This is the living plan.
Parse ## Meta to understand what kind of project this is:
If code spec (git available):
git log --oneline -20
Compare commits against open items. Look for:
If general project:
Skip this step. Present the current state and ask the user what's changed since last session.
Present a concise status:
Code spec format:
## Picking up: Auth Rework
Collection: Auth Rework | Branch: dan/auth-rework
### Progress
- [x] AR-1 — Strip old middleware
- [x] AR-2 — Implement PKCE flow
- [ ] **AR-3 — Token refresh** → `src/mnp/auth/token.clj`
- [ ] AR-4 — Rate limiting
### Since last session
- 3 commits: added PKCE handler, updated tests, removed old session code
- AR-2 looks complete based on commit "implement PKCE auth flow"
### Suggested next step
AR-3: Implement token refresh handling
### Open questions
- How do we handle token revocation across devices?
General project format:
## Picking up: House Purchase — 14 Elm Street
Collection: House Purchase — 14 Elm Street
### Progress
- [x] HP-1 — Submit offer
- [x] HP-2 — Offer accepted
- [ ] **HP-3 — Instruct solicitor** → Brennan & Co
- [ ] HP-4 — Commission survey
### What's next
HP-3: Instruct solicitor. Ref: BC/2026/1234
### Open questions
- Should we negotiate on the boiler?
Anything changed since we last talked about this?
Highlight the next actionable item. For code specs, if commits suggest items are done, ask the user to confirm before updating.
Once the project is loaded in context, continue as project or spec would.
Project name, feature name, or branch (optional — defaults to current branch if in a git repo): $ARGUMENTS
npx claudepluginhub sombra-hq/sombra-skills --plugin sombraGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.