Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 739 Bytes

File metadata and controls

21 lines (17 loc) · 739 Bytes

Agent Instructions

Repo Layout

ai-stuff/
├── skills/       — Pi skills (SKILL.md + package.json per package)
└── extensions/   — Pi extensions (index.ts + package.json per package)

Adding a New Package

  1. Create a new directory under skills/ or extensions/.
  2. Add a package.json with "keywords": ["pi-package"] and the appropriate "pi" field:
    • Skills: "pi": { "skills": ["./SKILL.md"] }
    • Extensions: "pi": { "extensions": ["./index.ts"] }
  3. Add the main content file(s):
    • Skills: SKILL.md with a YAML front-matter name and description
    • Extensions: index.ts exporting a default function (pi: ExtensionAPI) => void
  4. Add a README.md describing the package.