Personal, portable AI-agent skills marketplace.
This repo is the maintained home for reusable skills that should work across agents such as Codex, Claude, and compatible local assistants. Skills are organized by category and kept as plain folders with a required SKILL.md plus optional scripts/, references/, assets/, or templates/.
skills/- curated skills, grouped by category.marketplace/index.json- generated machine-readable catalog.marketplace/catalog.md- generated human-readable catalog.scripts/build_index.py- catalog generator.
email-management- Himalaya email workflows plus scheduled newsletter, OTP/security, and smart organizer jobs.event-monitoring- recurring web/event discovery, including the historical Toronto Meetup monitor.research/toronto-weekend-events- Toronto weekend digest collection and formatting.research/tpl-map-pass-monitor- TPL MAP/ePass availability checks without committed credentials.notes/vault-76-organization- weekly Markdown vault summary and task extraction.
Newsletter Cleanup (Weekly)->email-managementOTP/Security Cleanup (Weekly)->email-managementSmart Inbox Organizer (Weekly)->email-managementTPL Map Monitor Heartbeat Fixed->research/tpl-map-pass-monitorTPL Map Pass Monitor (Active Alerts)->research/tpl-map-pass-monitorMeetup Event Discovery (Toronto)->event-monitoringVault-76 Sync & Organization (Weekly)->notes/vault-76-organizationToronto Weekend Digest->research/toronto-weekend-events
Copy a skill folder into the target agent's skills directory.
Codex example:
mkdir -p ~/.codex/skills
cp -a skills/software-development/code-review ~/.codex/skills/code-reviewClaude-style local example:
mkdir -p ~/.claude/skills
cp -a skills/software-development/code-review ~/.claude/skills/code-reviewFor agents that support categorized skills, preserve the category path:
mkdir -p ~/.agent/skills/software-development
cp -a skills/software-development/code-review ~/.agent/skills/software-development/code-reviewpython3 scripts/build_index.py- Add a directory under
skills/<category>/<skill-name>/. - Put portable instructions in
SKILL.md. - Put reusable helpers in
scripts/,references/,assets/, ortemplates/. - Keep frontmatter minimal:
nameanddescription. - Run
python3 scripts/build_index.py. - Commit the skill and updated marketplace files.
This repo is curated, agent-agnostic, and non-destructive. Raw backups, private automation state, memories, cron prompts, chat names, and secrets stay outside the repo. Only copy them in after explicit review.