skills/README.md
2026-05-01 05:55:41 +01:00

44 lines
987 B
Markdown

# Agent Skills
This repository contains the local agent skills used by Codex.
Current imported source commit:
`b843cb5ea74b1fe5e58a0fc23cddef9e66076fb8`
## Layout
- `engineering/`
- `productivity/`
- `misc/`
- `personal/`
- `deprecated/`
Each category directory is copied from upstream with its own README and skill
subdirectories.
## Active Codex Install
`/home/ldr/.codex/skills` should stay flat. Do not symlink the category
directories into Codex.
Instead, each skill directory under the categories here should be exposed as a
top-level symlink in `/home/ldr/.codex/skills`, for example:
```sh
/home/ldr/.codex/skills/tdd -> ../../ldr/skills/engineering/tdd
```
Keep `/home/ldr/.codex/skills/.system` config-only.
## Refresh
From this repository root:
```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/. .
```
After refreshing, update the commit hash above from the source repository.