https://github.com/jalanb/clawdr
Holder for some of my ~/.claude files
https://github.com/jalanb/clawdr
claude-code commands skills
Last synced: 5 days ago
JSON representation
Holder for some of my ~/.claude files
- Host: GitHub
- URL: https://github.com/jalanb/clawdr
- Owner: jalanb
- License: other
- Created: 2026-06-15T23:19:15.000Z (8 days ago)
- Default Branch: __main__
- Last Pushed: 2026-06-15T23:50:56.000Z (8 days ago)
- Last Synced: 2026-06-16T01:24:09.952Z (8 days ago)
- Topics: claude-code, commands, skills
- Language: Shell
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# clawdr
User's Claude environment — skills, commands, and the `just` workflows that keep them in sync with `~/.claude/`.
GitHub is source of truth. `just push` deploys to `~/.claude/`. `just pull` pulls back.
---
## Skills
Skills teach Claude how to behave in specific contexts. Each skill is a `SKILL.md` file deployed to `~/.claude/skills//`.
### Using skills
```bash
just push-skills # deploy all skills to ~/.claude/skills/
just push-skill # deploy one skill
just pull-skill # pull changes back from ~/.claude/ to repo
```
Or from inside a skill dir:
```bash
cd skills/ && just push
cd skills/ && just pull
```
### Adding a skill
```bash
just new-skill
```
Scaffolds `skills//` from `templates/`, substitutes `{{ name }}`, opens `SKILL.md` and `README.md` in vim.
### Skill layout
```
skills//
src/
SKILL.md ← the skill content deployed to ~/.claude/skills//
justfile ← push / pull
pyproject.toml ← packaging (if skill has Python code)
README.md ← dev notes
```
---
## Commands
Commands are slash commands for Claude Code, deployed to `~/.claude/commands/`.
```bash
just push-commands # deploy all commands to ~/.claude/commands/
just pull-commands # pull changes back
```
Commands live in `commands/commands/*.md` (and `.py`, `.sh`).
---
## Background
See `context.md` for the origin story — why this project exists and what problems it solves.