Skip to content

pmisha/aiskills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AI Skills

A provider-agnostic library of reusable AI skills, prompt templates, and agent configurations. Write a skill once — run it with Claude, Gemini, OpenAI, or any other provider.

Structure

aiskills/
├── skills/                # All skills — flat, no provider subdirectories
│   ├── summarize.md
│   └── extract-json.md
├── agents/                # One config file per provider
│   ├── claude.json
│   └── gemini.json
├── prompts/
│   ├── system/            # Shared system prompts
│   ├── templates/         # Reusable prompt templates
│   └── chains/            # Multi-step prompt chains
├── tools/
│   ├── mcp/               # MCP server tool definitions
│   └── functions/         # Function/tool calling definitions
├── tests/                 # Skill tests
└── docs/                  # Documentation and guides

Getting Started

  1. Copy .env.example to .env and add your API keys.
  2. Browse skills/ for ready-to-use skills.
  3. Pick a provider config from agents/ to run them.
  4. See docs/adding-a-skill.md to write your own.

Supported Providers

Provider Config
Anthropic agents/claude.json
Google agents/gemini.json

Adding a new provider takes one config file in agents/.

Contributing

See docs/adding-a-skill.md for the full guide.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors