https://github.com/langburd/agent-skills
Personal Claude Code plugin marketplace
https://github.com/langburd/agent-skills
Last synced: 18 days ago
JSON representation
Personal Claude Code plugin marketplace
- Host: GitHub
- URL: https://github.com/langburd/agent-skills
- Owner: langburd
- Created: 2026-06-06T17:37:37.000Z (25 days ago)
- Default Branch: main
- Last Pushed: 2026-06-09T09:45:39.000Z (22 days ago)
- Last Synced: 2026-06-11T11:23:29.211Z (20 days ago)
- Language: Shell
- Size: 141 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# langburd/agent-skills
Personal Claude Code plugin marketplace.
Skills-first, versioned with semver, auto-updating via native marketplace autoUpdate.
## Install
### Terminal (CLI)
```bash
claude plugin marketplace add langburd/agent-skills
claude plugin install cv-achievements@langburd
```
### Claude Code slash commands
```
/plugin marketplace add langburd/agent-skills
/plugin install cv-achievements@langburd
```
## Auto-Update
Claude Code can auto-apply newer plugin versions at startup by comparing
installed versions against this marketplace's index. Third-party marketplaces
have auto-update disabled by default — enable it in `~/.claude/settings.json`:
```json
{
"extraKnownMarketplaces": {
"langburd": {
"source": {
"source": "github",
"repo": "langburd/agent-skills"
},
"autoUpdate": true
}
}
}
```
`claude plugin marketplace add langburd/agent-skills` registers the entry; set
`"autoUpdate": true` on it (or toggle via `/plugin` → Marketplaces). No
SessionStart hook is needed — version comparison and update application are
built into Claude Code.
## Plugins
| Plugin | Version | Description |
|--------|---------|-------------|
| [claude-to-agents](plugins/claude-to-agents) | 0.1.0 | Convert Claude Code skills/config into agent definitions for other agent runtimes |
| [cv-achievements](plugins/cv-achievements) | 1.1.0 | Turn GitHub PR activity into CV achievement bullets for a job entry |
| [humanizer](plugins/humanizer) | 0.1.0 | Rewrite AI-sounding text into natural human prose — strip filler, hedging, and robotic phrasing |
| [linkedin-post](plugins/linkedin-post) | 0.1.0 | Turn any subject into a ready-to-post LinkedIn post: an HTML preview with copy buttons plus an image-generation prompt |
## Contributing
Fork, add plugin under `plugins//`, run `./scripts/sync.sh`, open PR.
CI validates automatically.
### Plugin Structure
```text
plugins//
├── .claude-plugin/
│ └── plugin.json # { "name", "version", "description" }
├── skills/
│ └── /
│ └── SKILL.md # frontmatter: name, description
└── README.md
```
### Workflow
```bash
# Edit skill, bump version in plugin.json, regenerate
./scripts/sync.sh
git add -p && git commit
```