skills/README.md

45 lines
987 B
Markdown
Raw Normal View History

2026-03-21 10:16:09 +00:00
# Agent Skills
2026-05-01 04:55:41 +00:00
This repository contains the local agent skills used by Codex.
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
Current imported source commit:
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
`b843cb5ea74b1fe5e58a0fc23cddef9e66076fb8`
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
## Layout
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
- `engineering/`
- `productivity/`
- `misc/`
- `personal/`
- `deprecated/`
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
Each category directory is copied from upstream with its own README and skill
subdirectories.
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
## Active Codex Install
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
`/home/ldr/.codex/skills` should stay flat. Do not symlink the category
directories into Codex.
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
Instead, each skill directory under the categories here should be exposed as a
top-level symlink in `/home/ldr/.codex/skills`, for example:
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
```sh
/home/ldr/.codex/skills/tdd -> ../../ldr/skills/engineering/tdd
```
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
Keep `/home/ldr/.codex/skills/.system` config-only.
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
## Refresh
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
From this repository root:
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
```sh
curl -L -o /tmp/skills-main.tar.gz <source-archive-url>
tar -xzf /tmp/skills-main.tar.gz -C /tmp
cp -a /tmp/skills-main/skills/. .
```
2026-03-21 10:16:09 +00:00
2026-05-01 04:55:41 +00:00
After refreshing, update the commit hash above from the source repository.