docs: add assets install steps

This commit is contained in:
Matt Bruce 2026-02-11 11:44:55 -06:00
parent 399737006f
commit f477014a47

View File

@ -53,3 +53,35 @@ SKILLS_FILE=/tmp/ios-skills.yaml /tmp/sync-skills.sh
Notes:
- The sync script reads the list file you pass in `SKILLS_FILE`.
- Cloning the repo is still recommended if you want updates and version history.
## Install Agents
Agents are prompt files that live under assets/agents.
### Clone And Copy (Recommended)
```bash
git clone git@<host>:org/ai-assets.git
mkdir -p ~/.agents/agents
cp -R ai-assets/agents/* ~/.agents/agents/
```
### No-Clone (Raw Files)
```bash
mkdir -p ~/.agents/agents
curl -fsSL <raw-url-to-agent-file> -o ~/.agents/agents/<agent-file>.agent.md
```
## Install Instructions
Instructions are repo-level rule files. Copy them into your project.
### Clone And Copy (Recommended)
```bash
git clone git@<host>:org/ai-assets.git
mkdir -p ./instructions
cp -R ai-assets/instructions/* ./instructions/
```
### No-Clone (Raw Files)
```bash
mkdir -p ./instructions
curl -fsSL <raw-url-to-instruction-file> -o ./instructions/<name>.instructions.md
```