ai-tools
July 15, 2026 · View on GitHub
A marketplace repository for distributing AI agent skills and plugins for Claude Code and Codex.
Highlights
- Publishes multiple plugins through
.claude-plugin/marketplace.json - Publishes Codex plugins through
.agents/plugins/marketplace.json - Provides an APM marketplace manifest through
marketplace.ymland generatedmarketplace.json - Includes installable skill collections such as
agent-skills,takt, andsoftware-design - Keeps
skills/,.agents/skills/, and.claude/skills/links for tools that consume plain skill directories directly
Installation
Claude Code Plugin
/plugin marketplace add j5ik2o/ai-tools
/plugin install git@ai-tools
/plugin install github@ai-tools
/plugin install agent-skills@ai-tools
/plugin install takt@ai-tools
/plugin install software-design@ai-tools
Codex Plugin
Register this repository as a Codex plugin marketplace, then install the plugins you need:
codex plugin marketplace add j5ik2o/ai-tools --ref main
codex plugin add git@ai-tools
codex plugin add github@ai-tools
codex plugin add agent-skills@ai-tools
codex plugin add takt@ai-tools
codex plugin add software-design@ai-tools
Verify the installation, then start a new Codex task so the installed plugins are loaded:
codex plugin list
Agent Package Manager
apm marketplace add j5ik2o/ai-tools --name ai-tools
apm install software-design@ai-tools
Available APM package names are git, github, agent-skills, takt, and software-design.
GitHub CLI Skill
GitHub CLI provides gh skill for installing agent skills from GitHub repositories. See the gh skill manual for the current preview behavior.
Install a specific skill from this repository:
gh skill install j5ik2o/ai-tools j5ik2o-deep-research-read-me --agent codex --scope user --pin main
Install every skill exposed through the standard skills/ directory:
gh skill install j5ik2o/ai-tools --all --agent codex --scope user --pin main
The skills/ directory is the default discovery entry point. Mirrored links are also kept under .agents/skills/ and .claude/skills/; pass --allow-hidden-dirs only when you intentionally want gh skill to include hidden skill directories during discovery.
Skill-directory-based CLI
npx skills add j5ik2o/ai-tools
Plugins
| Plugin | Description | Key skills | Details |
|---|---|---|---|
git | Git workflow skills, including staging and committing working-tree changes following Conventional Commits | j5ik2o-git-commit | plugin.json |
github | GitHub workflow skills, including systematic issue triage and GitHub OSS README creation, improvement, and review | j5ik2o-gh-issue-organizer, j5ik2o-deep-research-read-me | plugin.json |
agent-skills | Agent skills demonstrating skill creation, evaluation, and iterative improvement workflows | j5ik2o-skill-forge | README |
takt | TAKT workflow engine skills for multi-agent orchestration, analysis, building, and optimization | j5ik2o-takt-task-builder, j5ik2o-takt-workflow-builder, j5ik2o-takt-facet-builder, j5ik2o-takt-analyzer, j5ik2o-takt-optimizer, j5ik2o-takt-skill-updater | README |
software-design | Software design skills for DDD, clean architecture, error handling, package design, refactoring, and maintainable domain modeling | j5ik2o-ddd-aggregate-design, j5ik2o-clean-architecture, j5ik2o-error-handling, j5ik2o-package-design, j5ik2o-refactoring-packages | plugin.json |
Repository Structure
.claude-plugin/
└── marketplace.json
marketplace.yml
marketplace.json
mise.toml
plugins/
├── git/
│ └── skills/
│ └── j5ik2o-git-commit/
├── github/
│ └── skills/
│ ├── j5ik2o-deep-research-read-me/
│ └── j5ik2o-gh-issue-organizer/
├── agent-skills/
│ ├── README.md
│ └── skills/
│ └── j5ik2o-skill-forge/
├── takt/
│ ├── README.md
│ └── skills/
│ ├── j5ik2o-takt-analyzer/
│ ├── j5ik2o-takt-facet-builder/
│ ├── j5ik2o-takt-optimizer/
│ ├── j5ik2o-takt-skill-updater/
│ └── j5ik2o-takt-task-builder/
└── software-design/
└── skills/
├── j5ik2o-clean-architecture/
├── j5ik2o-ddd-aggregate-design/
├── j5ik2o-error-handling/
└── ...
skills/
├── j5ik2o-deep-research-read-me -> ../plugins/github/skills/j5ik2o-deep-research-read-me
├── j5ik2o-skill-forge -> ../plugins/agent-skills/skills/j5ik2o-skill-forge
├── j5ik2o-takt-analyzer -> ../plugins/takt/skills/j5ik2o-takt-analyzer
└── ...
.agents/skills/
├── j5ik2o-deep-research-read-me -> ../../plugins/github/skills/j5ik2o-deep-research-read-me
└── ...
.claude/skills/
├── j5ik2o-deep-research-read-me -> ../../plugins/github/skills/j5ik2o-deep-research-read-me
└── ...
template/
└── SKILL.md.template
Creating a New Skill
- Copy
template/SKILL.md.templatetoplugins/agent-skills/skills/j5ik2o-<your-skill>/SKILL.md - Edit the frontmatter (
name,description) and add instructions - Create a symlink in
skills/if you want direct CLI consumption:ln -s ../plugins/agent-skills/skills/j5ik2o-<your-skill> skills/j5ik2o-<your-skill> - Add or update entries in
.claude-plugin/marketplace.jsonif you are publishing a new plugin collection
Maintaining the APM Marketplace
This repository keeps marketplace.yml as the APM authoring source and commits the generated marketplace.json for consumers.
APM is managed through mise:
mise install
mise run apm:version
Preview marketplace resolution without writing files:
mise run apm:marketplace:check
Regenerate marketplace.json from marketplace.yml:
mise run apm:marketplace:build
Package refs in marketplace.yml are pinned to commit SHAs for reproducible APM builds. Update those refs when publishing a new marketplace revision.
License
See each skill's directory for individual license information.