vasilyu1983
AI-Agents-public
Python

Production-grade agent skills and Custom GPT prompts for Claude Code, Codex, and Gemini CLI. 64 skills, 28 agents, Agent Skills spec compliant.

Last updated Aug 10, 2026
74
Stars
16
Forks
0
Issues
+1
Stars/day
Attention Score
61
Language breakdown
Python 84.4%
Shell 8.3%
C# 2.4%
JavaScript 1.7%
HTML 1.6%
TypeScript 0.9%
โ–ธ Files click to expand
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 Start โ€ข Skills โ€ข Custom GPTs โ€ข Contributing


What's Inside

Two things, usable independently:

Agent Skills specification. Drop into ~/.claude/skills/.
  • custom-gpt/ โ€” 28 Custom GPT system prompts for ChatGPT, written to fit
the GPT builder's 8000-character Instructions limit.

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

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

| Category | Count | | --- | ---: | | Productivity | 8 | | Lifestyle | 7 | | Programming | 5 | | Education | 3 | | Research & Analysis | 3 | | Writing | 2 |

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

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.

๐Ÿ”— More in this category

ยฉ 2026 GitRepoTrend ยท vasilyu1983/AI-Agents-public ยท Updated daily from GitHub