v2.1: Unify skills and slash commands pattern (#5)

* v2.1: Unify skills and slash commands pattern

Following the new Claude Code standard where skills and slash commands
are merged into a single unified pattern:

- Convert commands to skills: /daily-workflow, /weekly-review, /push, /onboard
- Each skill has SKILL.md with frontmatter (name, description, allowed-tools)
- Skills can be invoked with /skill-name OR auto-discovered by Claude
- Remove deprecated .claude/commands/ directory
- Update all documentation to reference new unified pattern
- Update agents to reference skills instead of commands
- Update CLAUDE.md with unified skills table

This aligns with Claude Code 2.1+ where skills and slash commands
share the same features and invocation patterns.

* Simplify skill names: daily-workflow → daily, weekly-review → weekly

Rename verbose skill folders and names to shorter, cleaner invocations:
- daily-workflow/ → daily/ (invoked with /daily)
- weekly-review/ → weekly/ (invoked with /weekly)

Update all references across documentation, agents, and skill files
to use consistent short command names.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

---------

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Bill Allred
2026-01-12 11:57:37 -08:00
committed by GitHub
parent 3d66b2121a
commit fa10141e9e
16 changed files with 689 additions and 969 deletions

View File

@@ -26,14 +26,18 @@ See @Goals/2. Monthly Goals.md for this month's priorities.
**Status:** `#active`, `#waiting`, `#completed`, `#archived`
**Context:** `#work`, `#personal`, `#health`, `#learning`, `#family`
## Available Commands
## Available Skills
| Command | Purpose |
|---------|---------|
| `/daily` | Create today's daily note from template |
| `/weekly` | Run weekly review process |
| `/push` | Commit and push changes to Git |
| `/onboard` | Load full vault context |
Skills are invoked with `/skill-name` or automatically by Claude when relevant.
| Skill | Invocation | Purpose |
|-------|------------|---------|
| `daily` | `/daily` | Create daily notes, morning/midday/evening routines |
| `weekly` | `/weekly` | Run weekly review, reflect and plan |
| `push` | `/push` | Commit and push changes to Git |
| `onboard` | `/onboard` | Load full vault context |
| `goal-tracking` | (auto) | Track progress across goal cascade |
| `obsidian-vault-ops` | (auto) | Read/write vault files, manage wiki-links |
## Available Agents
@@ -44,12 +48,6 @@ See @Goals/2. Monthly Goals.md for this month's priorities.
| `goal-aligner` | Check daily/weekly alignment with long-term goals |
| `inbox-processor` | GTD-style inbox processing |
## Available Skills
- **obsidian-vault-ops** - Read/write vault files, manage wiki-links
- **goal-tracking** - Track progress across goal cascade
- **daily-workflow** - Morning/midday/evening routines
## Output Styles
**Productivity Coach** (`/output-style coach`)
@@ -92,5 +90,5 @@ See `CLAUDE.local.md.template` for format.
---
*See @.claude/rules/ for detailed conventions*
*Last Updated: 2024-12-19*
*System Version: 2.0*
*Last Updated: 2026-01-10*
*System Version: 2.1 (Unified Skills)*