ai-tools
日本語
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.yml and generated marketplace.json
- Includes installable skill collections such as
agent-skills, takt, and software-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/
└── ...