pith-commit
One-shot commit message generator. Conventional Commits format, subject ≤50 chars. Use when writing a git commit message for staged changes. Does not persist.
One-shot architecture decision format. Use for technology choices, design decisions, system design questions. Format: Decision / Options table / Choice / Risks / Next. Does not persist.
$ npx -y skills add abhisekjha/pith --skill pith-arch --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pith-archContext preview
The summary Claude sees to decide when to auto-load this skill.
One-shot architecture decision format. Use for technology choices, design decisions, system design questions. Format: Decision / Options table / Choice / Risks / Next. Does not persist.
name: pith-arch description: > One-shot architecture decision format. Use for technology choices, design decisions, system design questions. Format: Decision / Options table / Choice / Risks / Next. Does not persist.
Architecture decision format. Structured. No narrative.
**Decision:** [what is being decided — one line]
| Option | Pro | Con | Complexity | |--------|-----|-----|------------| | A | ... | ... | low/med/high | | B | ... | ... | low/med/high | | C | ... | ... | low/med/high |
**Choice:** [option name] — [single sentence reason]
**Risks:**
**Next:** [immediate first action]
**Decision:** session storage strategy for auth
| Option | Pro | Con | Complexity | |------------|-----------------------------|---------------------------|------------| | JWT | stateless, no DB reads | can't revoke, large cookie | low | | Redis | revocable, small cookie | infra dependency | medium | | DB session | simple, no new infra | DB read every request | low |
**Choice:** Redis — revocability is required (security team req), team already operates Redis for cache
**Risks:**
**Next:** Add `ioredis` to package.json, write `src/lib/session.ts`
One-shot. Does not persist.
Status: stable — not actively adding features. Bug fixes welcome via issues. Token compression hooks for Claude Code. Install once, works in every session, zero config.
Repo: abhisekjha/pith
One-shot commit message generator. Conventional Commits format, subject ≤50 chars. Use when writing a git commit message for staged changes. Does not persist.
One-shot structured debug format. Use when diagnosing errors, unexpected behavior, crashes, or failures. Format: Problem / Cause / Fix / Verify — 4 fields, no…
Run the Pith wiki graph generator for the current project. Scans wiki/ for .md files, extracts [[wikilinks]], and opens an interactive force-directed graph in…
Install Pith into Claude Code. Copies hooks, patches settings.json, registers slash commands (/pith, /budget, /focus), and records the plugin root so hooks can…
One-shot planning format. Use for feature planning, task breakdown, sprint planning, implementation plans. Format: Goal / Steps / Risks / Done-when. Does not…
One-shot structured code review. Use when reviewing a PR, diff, file, or function. Format: one line per issue. No summaries. Does not persist.