Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions skills/rag-tracking/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,26 @@ The files in this skill directory (`skills/memory/`) are **templates** for refer

### Initial Setup

1. Install ctx: `brew install worktrunk` (or see ctx.ist)
1. Install ctx (from source, requires Go):
```bash
git clone https://github.com/ActiveMemory/ctx.git
cd ctx
CGO_ENABLED=0 go build -o ctx ./cmd/ctx
sudo mv ctx /usr/local/bin/
```

Or download pre-built binaries from [releases](https://github.com/ActiveMemory/ctx/releases).

2. Initialize ctx in your project: `ctx init`
- This creates `.context/` with TASKS.md, DECISIONS.md, LEARNINGS.md, CONVENTIONS.md
3. Copy dragster templates to `.context/`:
```bash
cp skills/memory/COLLECTIONS.md .context/
cp skills/memory/ISSUES.md .context/
cp skills/rag-tracking/COLLECTIONS.md .context/
cp skills/rag-tracking/ISSUES.md .context/
```
4. Copy ctx configuration (optional, enables hooks):
```bash
cp skills/memory/ctxrc.template .ctxrc
cp skills/rag-tracking/ctxrc.template .ctxrc
```
5. Add dragster-specific patterns to LEARNINGS.md:
```bash
Expand Down
Loading