ima-claude 2.10.0 → 2.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  FP patterns, architecture guidance, and team standards for AI coding agents.
4
4
 
5
- **Supports Claude Code and Junie CLI** — with an extensible adapter architecture ready for more platforms.
5
+ **Supports Claude Code, Junie CLI, Gemini CLI, and GitHub Copilot** — with an extensible adapter architecture ready for more platforms.
6
6
 
7
7
  Built by [Independent Medical Alliance](https://imahealth.org) (formerly FLCCC)
8
8
 
@@ -38,9 +38,9 @@ claude plugin update ima-claude
38
38
 
39
39
  Or use `/plugin` inside Claude Code to manage updates interactively via the **Installed** tab.
40
40
 
41
- ### Junie CLI — Multi-Platform Installer
41
+ ### Junie CLI / Gemini CLI / GitHub Copilot — Multi-Platform Installer
42
42
 
43
- For Junie (or any non-plugin platform), use the interactive CLI installer:
43
+ For Junie, Gemini, GitHub Copilot, or any non-plugin platform, use the interactive CLI installer:
44
44
 
45
45
  ```bash
46
46
  npx ima-claude install
@@ -48,7 +48,7 @@ npx ima-claude install
48
48
 
49
49
  The installer auto-detects which platforms are available and walks you through installation:
50
50
 
51
- 1. **Detects platforms** — scans for Claude Code (`~/.claude`) and Junie CLI (`~/.junie`)
51
+ 1. **Detects platforms** — scans for Claude Code (`~/.claude`), Junie CLI (`~/.junie`), Gemini CLI (`~/.gemini`), and GitHub Copilot (`~/.copilot`)
52
52
  2. **Shows preview** — lists all skills, agents, and platform-specific items to install
53
53
  3. **Allows exclusions** — skip specific skills or agents you don't need
54
54
  4. **Installs with feedback** — step-by-step progress for each item
@@ -56,31 +56,35 @@ The installer auto-detects which platforms are available and walks you through i
56
56
  You can also target a specific platform directly:
57
57
 
58
58
  ```bash
59
- npx ima-claude install --target junie # Junie only
60
- npx ima-claude install --target claude # Claude Code only (plugin recommended instead)
61
- npx ima-claude detect # Show detected platforms
59
+ npx ima-claude install --target junie # Junie only
60
+ npx ima-claude install --target gemini # Gemini CLI only
61
+ npx ima-claude install --target gh-copilot # GitHub Copilot only
62
+ npx ima-claude install --target claude # Claude Code only (plugin recommended instead)
63
+ npx ima-claude detect # Show detected platforms
62
64
  ```
63
65
 
64
- **What's different for Junie?**
66
+ **What's different per platform?**
65
67
 
66
- | | Claude Code | Junie CLI |
67
- |---|---|---|
68
- | **Skills** | Plugin system (auto) | Copied to `~/.junie/skills/` |
69
- | **Agents** | Plugin system (auto) | Transformed (strips `permissionMode`) `~/.junie/agents/` |
70
- | **Hooks** | 23 Python hook scripts | No hook system — translated into behavioral guidelines |
71
- | **Guidelines** | Plugin's `CLAUDE.md` injection | Generated `AGENTS.md` with persona, workflow, and hook-derived rules |
68
+ | | Claude Code | Junie CLI | Gemini CLI | GitHub Copilot |
69
+ |---|---|---|---|---|
70
+ | **Skills** | Plugin system (auto) | Copied to `~/.junie/skills/` | Copied to `~/.gemini/skills/` | Copied to `~/.copilot/skills/` |
71
+ | **Agents** | Plugin system (auto) | Strips `permissionMode` | Strips `model` + `permissionMode`, maps tool names | Strips `model` + `permissionMode`, maps tool names, renames to `.agent.md` |
72
+ | **Hooks** | 24 Python hook scripts | No hook system — behavioral guidelines | Translated events + tool names, translator shim | Translated events + tool names, translator shim, flattened config |
73
+ | **Guidelines** | Plugin's `CLAUDE.md` injection | Generated `AGENTS.md` | Generated `GEMINI.md` | Generated `copilot-instructions.md` |
72
74
 
73
- Junie doesn't support hooks, so the installer translates all 25 hook behaviors into persistent guidelines inside `AGENTS.md` same enforcement, different mechanism.
75
+ Junie doesn't support hooks, so behaviors become guidelines in `AGENTS.md`. Gemini and GitHub Copilot have hooks but use different event/tool names — a translator shim normalizes input so all existing hooks work unmodified. Copilot additionally uses a flat hook config format with `bash` field and `version: 1` wrapper.
74
76
 
75
77
  ### Adding New Platforms
76
78
 
77
- The installer uses an adapter pattern. Adding support for a new platform (e.g., GitHub Copilot) means creating one file implementing the `PlatformAdapter` interface:
79
+ The installer uses an adapter pattern. Adding support for a new platform means creating one file implementing the `PlatformAdapter` interface:
78
80
 
79
81
  ```
80
82
  platforms/
81
- ├── shared/types.ts # PlatformAdapter interface
82
- ├── claude/adapter.ts # Claude Code adapter
83
- └── junie/adapter.ts # Junie CLI adapter
83
+ ├── shared/types.ts # PlatformAdapter interface
84
+ ├── claude/adapter.ts # Claude Code adapter
85
+ ├── junie/adapter.ts # Junie CLI adapter
86
+ ├── gemini/adapter.ts # Gemini CLI adapter
87
+ └── gh-copilot/adapter.ts # GitHub Copilot adapter
84
88
  ```
85
89
 
86
90
  See [platforms/shared/types.ts](platforms/shared/types.ts) for the interface contract.
@@ -89,7 +93,7 @@ See [platforms/shared/types.ts](platforms/shared/types.ts) for the interface con
89
93
 
90
94
  ## What's Included
91
95
 
92
- - **Multi-Platform Installer**: Interactive CLI with auto-detection, install preview, and per-item exclusion — supports Claude Code and Junie CLI, extensible adapter architecture for more
96
+ - **Multi-Platform Installer**: Interactive CLI with auto-detection, install preview, and per-item exclusion — supports Claude Code, Junie CLI, Gemini CLI, and GitHub Copilot
93
97
  - **48 Skills**: Foundational + FP implementation + domain expert + integration + meta-skills
94
98
  - **6 Named Agents**: Explorer (haiku), Implementer (sonnet), Reviewer (sonnet), Tester (sonnet), WP Developer (sonnet), Memory (sonnet) — enforced constraints
95
99
  - **23 Hooks**: Automatic behavioral enforcement (security, memory, workflow, Serena, code quality) — translated to guidelines for platforms without hook support
@@ -102,7 +106,7 @@ See [platforms/shared/types.ts](platforms/shared/types.ts) for the interface con
102
106
 
103
107
  ## Prerequisites
104
108
 
105
- - [Claude Code](https://claude.ai/code) or [Junie CLI](https://www.jetbrains.com/help/idea/junie.html) installed
109
+ - [Claude Code](https://claude.ai/code), [Junie CLI](https://www.jetbrains.com/help/idea/junie.html), [Gemini CLI](https://github.com/google-gemini/gemini-cli), or [GitHub Copilot](https://github.com/features/copilot) installed
106
110
 
107
111
  ## MCP Servers (Highly Recommended)
108
112
 
@@ -200,6 +204,9 @@ ima-claude includes skills that teach Claude how to use each MCP server effectiv
200
204
  | **mcp-context7** | Library documentation lookup strategies |
201
205
  | **mcp-sequential** | Structured reasoning workflows |
202
206
  | **mcp-atlassian** | Jira & Confluence operations (Claude's bundled integration) |
207
+ | **mcp-gitea** | Internal Git management: PRs, issues, releases, branches, tags, wikis, CI/CD actions |
208
+ | **mcp-github** | FOSS/public repo management: PRs, issues, code review, repo search (`gh` CLI fallback) |
209
+ | **gh-cli** | GitHub CLI (`gh`) for PRs, issues, releases, Actions, code review, search, and raw API access |
203
210
  | ~~**compound-bridge**~~ | Compound Engineering integration — **deprecated**, only useful if your team actively uses Compound Engineering |
204
211
 
205
212
  ### Session Management Skills
@@ -405,7 +412,7 @@ ima-claude follows a **Persona + Skills** architecture:
405
412
  - **Platform adapters** - Shared `PlatformAdapter` interface; each platform implements detect, preview, install, and guideline generation
406
413
 
407
414
  This makes ima-claude:
408
- 1. **Multi-platform** - Same skills and agents across Claude Code, Junie CLI, and future platforms
415
+ 1. **Multi-platform** - Same skills and agents across Claude Code, Junie CLI, Gemini CLI, and GitHub Copilot
409
416
  2. **Fully standalone** - Complete system without dependencies
410
417
  3. **Consistent** - Same mindset across all interactions
411
418
  4. **Efficient** - Skills load on-demand based on context