Shared agent instructions, skills, and small portable helpers for Chase's local workspaces.
This repo is canonical for:
AGENTS.md: shared hard rules for Codex agentsskills/: reusable workflow skillsscripts/: dependency-light helpers used across projectshooks/: local guardrails such as skill validation
Skills are the main routing layer. Each skills/<name>/SKILL.md has YAML front matter:
---
name: skill-name
description: "Short generic trigger phrase."
---Rules:
- Keep descriptions short and generic; optimize for routing, not documentation.
- Keep skill bodies terse and operational.
- Prefer helper scripts under
skills/<name>/scripts/when a workflow has repeatable commands. - Validate after edits:
scripts/validate-skills. - Quote
descriptionin front matter.
Global discovery points here with individual symlinks:
~/.codex/AGENTS.md -> ~/agent-scripts/AGENTS.md~/.codex/skills/<name> -> ~/agent-scripts/skills/<name>
scripts/validate-skills
- Checks every
skills/*/SKILL.md. - Verifies YAML front matter plus required
nameanddescription.
Enable local hooks:
git config core.hooksPath hooksTreat this repo as canonical for shared agent rules and portable helper scripts.
Repo-specific rules stay in each repo's own AGENTS.md.