Skip to content

h2cone/agent-packs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

agent-packs

A collection of AI agent packs.

Pi Extensions

Extensions live in pi-extensions/ and are auto-discovered by Pi.

Command Description
/init Scaffolds an AGENTS.md contributor guide for the current repository
/commit [instructions] Stages all changes, generates a commit message via the AI, and commits
/review [options] Runs a read-only code review with prioritized findings

/commit options

/commit                    # stage all changes, generate message, commit
/commit <instructions>     # pass extra instructions for the commit message

/review options

/review                      # interactive menu (or defaults to uncommitted changes)
/review <instructions>       # custom review prompt
/review --base <branch>      # review changes against a base branch (PR style)
/review --commit <sha>       # review a specific commit
/review --uncommitted        # review current staged/unstaged/untracked changes

Skills

Skills live in skills/ as SKILL.md playbooks. Load a skill by pointing your agent at its file; the agent follows the steps inside.

Skill Trigger Description
github-publish "publish to GitHub", "push to GitHub", "create a GitHub repo" Analyzes the codebase, generates missing metadata files (README, .gitignore, LICENSE), creates the remote repo via gh, and pushes the first commit
github-topics "add topics", "set repo tags", "update GitHub topics" Analyzes the repo, recommends topics, validates them against GitHub, and applies them via gh repo edit

Setup

npm install

Development

npm run typecheck   # strict TypeScript check (no emit)

Before submitting changes, run typecheck and manually exercise the affected command, including at least one failure path (e.g., running /commit outside a git repo).

Project Structure

pi-extensions/
  init.ts            # /init command
  commit.ts          # /commit command
  review.ts          # /review command
skills/
  github-publish/
    SKILL.md         # publish a local project to a new GitHub repository
  github-topics/
    SKILL.md         # generate and apply GitHub repository topics

License

MIT

About

A collection of AI agent packs.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors