Personal configuration for Claude Code — Anthropic's CLI for Claude.
Install skills from this repo with:
npx skills@latest add danievanzyl/code-skills| Path | Description |
|---|---|
CLAUDE.md |
Global instructions applied to all sessions |
agents/ |
Custom sub-agent definitions (codebase-analyzer, codebase-locator, etc.) |
skills/ |
Reusable skill definitions — hand-authored + vendored (see below) |
commands/ |
Custom slash commands |
settings.json |
Claude Code settings |
plugin.json |
Plugin manifest (this repo is the agentic-platform plugin) |
.claude-plugin/ |
marketplace.json — the single-marketplace definition everything installs from |
hooks/ |
Hook configurations |
scripts/ |
Maintenance tooling (sync-skills.sh, skill-sources.json) |
.github/workflows/ |
CI — release.yml (version bump on merge to main) + sync-skills.yml (weekly upstream-skill sync PR) |
vendor/ |
Attribution + provenance for vendored skills (generated) |
ralph/ |
RALPH — autonomous AFK loop runner; drives Claude Code over an issues/ queue until <promise>NO MORE TASKS</promise> (afk.sh loop / once.sh single pass + per-stack prompts) |
tmux-workflow/ |
tmux + Ghostty session/worktree scripts (sessionizer, new-branch, close-branch with a PR-merged cleanup gate) |
- codebase-analyzer — Analyzes implementation details with file:line references
- codebase-locator — Locates files and directories relevant to a feature
- codebase-pattern-finder — Finds similar implementations and usage patterns
- gh-search-researcher — Researches GitHub repos, PRs, issues via
ghCLI - thoughts-analyzer — Deep dives on research topics
- thoughts-locator — Discovers relevant documents in thoughts directories
- web-search-researcher — Researches topics via web search
- swift-expect — Swift development specialist
This repo is the single source of truth for everything that runs in a session — first-party agents, commands, hooks, and skills all live here. Trusted upstream skills aren't copy-pasted in; they're ingested via GitHub Actions as recorded snapshots: each sync pins the exact upstream commit and lands through a reviewed PR, so every dependency is versioned, attributed, and auditable.
To keep everything under one marketplace, skills from external providers are vendored into
this plugin rather than installed as separate plugins. They land flat in skills/<name>/
so Claude Code's one-level skill auto-discovery registers them (a plugin.json skills array
is not honored from a root plugin.json, and nested dirs are too deep to be discovered), and
they invoke under this plugin's namespace, e.g. agentic-platform:tdd. Each vendored skill dir
carries a hidden .vendored-from marker recording its source.
- Config:
scripts/skill-sources.jsonlists each provider (repo, therefit tracks, categories to include, skills to exclude). Add a provider there — no code changes needed. - Sync:
bash scripts/sync-skills.shmirrors the configured skills intoskills/<name>/(writing a.vendored-frommarker per skill) and the upstreamLICENSE+ provenance intovendor/<provider>/. Each run records the exact upstream commit SHA + date invendor/<provider>/manifest.jsonand every.vendored-frommarker — that recorded SHA is the pin and the audit trail (the configuredrefmay be a moving branch; what's committed here is always an exact snapshot). It's idempotent, and prune is marker-scoped — a re-sync only ever removes dirs carrying that provider's marker, never a hand-authored skill; name collisions with hand-authored skills are skipped. Vendored skill dirs are generated — do not hand-edit. - Automation:
.github/workflows/sync-skills.ymlruns the sync weekly (and on demand via Run workflow), opening/updating a singlechore/sync-skillsPR. Merging it cuts a release.
Current provider: mattpocock/skills (MIT).
Many of the skills and commands in this config are based on HumanLayer's workflow patterns.