Sandbox
@vasilyu1983/AI-Agents-public

Agent skills and Custom GPT prompts for Claude Code

This repo packages reusable agent skills and Custom GPT prompts into folders you can copy or symlink into your workflow. The skills are spec-compliant, self-contained, and meant to work across Claude Code and Codex CLI, while the Custom GPT prompts are formatted for ChatGPT's builder.

87 stars19 forksPythonUpdated 15d ago
Who it's for

Builders who want reusable skills and prompts for Claude Code, Codex, or ChatGPT.

What it delivers

You can add ready-made agent instructions to your workflow instead of rewriting them for each project.

What it does

Portable agent skills

140 skills live in `frameworks/shared-skills/skills/` and follow the Agent Skills spec with `SKILL.md` entry points and progressive disclosure.

Custom GPT prompt packs

28 agents live under `custom-gpt/` as `01_*.md` instruction files, with optional `02_sources-*.json` knowledge files.

Symlink-based install

The README shows how to symlink one skill or the whole set into `~/.claude/skills/` so edits apply immediately.

Cross-platform skill layout

The same skill directories are meant to work in Claude Code and Codex CLI, with self-contained scripts, data, and path handling.

Quality-checked library structure

The repo describes routing, drift checks, adversarial review, and security screening used to keep the public skill set consistent.

How to get it

  1. 1Full breakdown: frameworks/shared-skills/README.md.
    <skill-name>/
    ├── SKILL.md      # Entry point — frontmatter + routing. Kept small.
    ├── references/   # Depth, loaded only when the task needs it
    ├── scripts/      # Deterministic helpers — no model call needed
    ├── assets/       # Templates and output contracts
    └── data/         # sources.json and curated data
  2. 2Each folder holds 01_*.md (the system prompt) and, where useful, a curated sources JSON.
    AI-Agents-public/
    ├── custom-gpt/                      # 28 Custom GPT prompts by category
    ├── frameworks/
    │   └── shared-skills/skills/        # 140 agent skills
    ├── CONTRIBUTING.md
    └── LICENSE

README

AI Agents Library

Production-Ready AI Agent Prompts & Skills

28 Custom GPT agents and 140 agent skills for ChatGPT, Claude Code, and Codex.

License: MIT Custom GPTs Skills PRs Welcome

Quick StartSkillsCustom GPTsContributing


What's Inside

Agent skills are portable instruction sets that teach AI agents how to execute domain work well — each is a directory with a SKILL.md entry point (YAML frontmatter + routing), progressive-disclosure references, and self-contained scripts and data.

Two things, usable independently:

Quick Start

git clone https://github.com/vasilyu1983/AI-Agents-public.git
cd AI-Agents-public

# One skill
ln -s "$PWD/frameworks/shared-skills/skills/ai-rag" ~/.claude/skills/ai-rag

# All of them
for s in frameworks/shared-skills/skills/*/; do
  ln -s "$PWD/$s" ~/.claude/skills/"$(basename "$s")"
done

Symlinks mean edits take effect immediately — no re-sync step.

For a Custom GPT: open custom-gpt/<category>/<agent>/01_*.md, paste into the GPT builder's Instructions field, and attach the sibling 02_sources-*.json as Knowledge if present.

Agent Skills

FamilyCountCovers
software-*34Backend, frontend, iOS, Android, desktop, security, payments, performance
ai-*21RAG, evals, prompt engineering, pretraining, post-training, inference, MLOps
qa-*17Test strategy, debugging, resilience, observability, accessibility, Playwright
foundations-*16Queueing, control, information, game, decision, reliability theory for systems
ai-coding-agents-*13Coding-agent runtime internals: sandboxing, permissions, sessions, tools
dev-*10Git workflow, API design, dependency management, code graphs, planning
agents-*6Hooks, MCP servers, skill authoring, swarm orchestration, repo memory
data-*5Lakehouse, streaming, SQL optimization, analytics engineering
ops-*4DevOps platform, incident response, cost optimization, CI/CD
document-*4docx, pdf, pptx, xlsx
docs-*3Docs-as-code, AI-ready PRDs, note retrieval
research-*3arXiv triage, GitHub mining, research method extraction
product-*2Product management, help centers
gamedev-*2Godot, Roblox

Two areas are unusually deep and harder to find elsewhere: coding-agent runtime internals (how agent CLIs actually implement sandboxing, permissions, and session resume) and systems-theory foundations (queueing and control theory applied to real design decisions, not as abstract math).

Full breakdown: frameworks/shared-skills/README.md.

How a skill is structured

<skill-name>/
├── SKILL.md      # Entry point — frontmatter + routing. Kept small.
├── references/   # Depth, loaded only when the task needs it
├── scripts/      # Deterministic helpers — no model call needed
├── assets/       # Templates and output contracts
└── data/         # sources.json and curated data

SKILL.md stays cheap enough to hold in context; references/ carry the detail and cost nothing until read.

Custom GPT Agents

28 agents across six categories:

CategoryCount
Productivity8
Lifestyle7
Programming5
Education3
Research & Analysis3
Writing2

Each folder holds 01_*.md (the system prompt) and, where useful, a curated sources JSON.

Repository Layout

AI-Agents-public/
├── custom-gpt/                      # 28 Custom GPT prompts by category
├── frameworks/
│   └── shared-skills/skills/        # 140 agent skills
├── CONTRIBUTING.md
└── LICENSE

How This Library Is Built

These skills are the public subset of a larger private library that is run as an engineered system, not a prompt collection. Every skill here passed through that system's quality machinery:

  • A routing engine — 8 domain routers dispatch 500+ decision scenarios, each an ordered skill chain with an explicit gate and a named failure mode. Skills are written to compose, not just to exist.
  • A generated knowledge graph with drift gates — the catalog (nodes, ownership, ordered scenario edges) is exported from the markdown and CI-checked against it, so prose and structure provably cannot diverge. A pre-tool hook blocks confabulated skill names at invocation time.
  • Adversarial review — scenario content is periodically challenged by parallel expert-panel agent runs (consistency, currency, decision value), and fixes are verified by retrieval smoke tests before merging.
  • Static security screening — third-party skills are scanned for prompt injection, hidden Unicode, and exfiltration sinks before they enter the library (taxonomy adapted from NVIDIA/SkillSpector).
  • Freshness discipline — volatile facts (framework versions, model pricing) live in per-skill data/ files refreshed by script, and prose is gated against its own data to stop version rot.

Standards & Compatibility

  • Specification: skills follow the Agent Skills specification — portable directories, YAML frontmatter, progressive disclosure.
  • Platforms: Claude Code (~/.claude/skills) and Codex CLI (~/.agents/skills); the same directories work in both.
  • Self-containment: every skill works detached from this repo — own data/, own scripts/, symlink-safe path resolution — so a single copied folder is a working install.

Scope

This is a curated public subset of a larger private library. Project-specific, client-scoped, marketing, startup, and legal skills are not published, and skills depending on internal libraries are excluded because they cannot be used outside their origin repo.

Contributing

Issues and PRs welcome — see CONTRIBUTING.md. Useful contributions: correcting something that has gone stale, adding a reference that saved you time, or reporting a skill that misfires.

License

MIT — see LICENSE. Use freely, including commercially.

Files in the repo

Repository payload6 top-level entries
  • custom-gpt
  • frameworks
  • .gitignore
  • CONTRIBUTING.md
  • LICENSE
  • README.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

obra/
superpowers

An agentic skills framework & software development methodology that works.

285k
1 add

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add
Vincentwei1021/
anything2explainer

Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.

666

Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

71k