oh-my-githubcopilot 2.0.0-alpha.1cd01f4 → 2.0.0-alpha.2aedbd0

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/AGENTS.md CHANGED
@@ -176,5 +176,29 @@ Before starting work on an issue:
176
176
 
177
177
  <!-- v3-ai-sdlc-init:start -->
178
178
  ## AI SDLC v3
179
- This repo follows the v3 AI-SDLC layout. See `.ai/matrix.json`, `.memory/human-override/`, and `docs/architecture/adr/`. Modules at `r3dlex/skills/ai-sdlc-init/modules/`.
179
+
180
+ This repo follows the v3 AI-SDLC layout (`topology_type: standalone`, depth 0). It is the single source of truth for the agent operating contract; `CLAUDE.md` and `GEMINI.md` are thin pointers to this file (ADR-0007).
181
+
182
+ ### Workflow
183
+
184
+ - Workflow doc: [`.ai/workflows/repo-workflow.md`](.ai/workflows/repo-workflow.md)
185
+ - Workflow manifest: [`.ai/workflows/repo-workflow.json`](.ai/workflows/repo-workflow.json)
186
+ - Handoff index: [`.ai/handoff/init-ai-repo-handoff.md`](.ai/handoff/init-ai-repo-handoff.md)
187
+
188
+ Continue through the mandatory phases and record status in `.ai/phases/<phase>/status.json`. See `.ai/matrix.json`, `.memory/human-override/`, and `docs/architecture/adr/`. Modules at `r3dlex/skills/init-ai-repo/modules/`.
189
+
190
+ ### Harness Map
191
+
192
+ The six context types this harness assembles, and where each lives (ADR-0008):
193
+
194
+ | Context type | Canonical source | Static or dynamic |
195
+ | --- | --- | --- |
196
+ | `Instructions` | `AGENTS.md`, `.ai/system-prompts/`, `.ai/rules/` | Static |
197
+ | `Knowledge` | `docs/architecture/`, `docs/specifications/`, `docs/learning/` | Static |
198
+ | `Memory` | `.memory/human-override/`, `.memory/self-learned/` | Dynamic |
199
+ | `Examples` | `.ai/evals/<set>/`, `docs/learning/concept-maps/` | Static |
200
+ | `Tools` | `.ai/skills/`, `.ai/mcp/registry.json` | Dynamic |
201
+ | `Guardrails` | `.ai/rules/security.md`, `.ai/rules/technical-bounds.md`, `.ai/policies/` | Static |
202
+
203
+ **Static-vs-dynamic boundary.** Static context is fixed at the start of a task and is reviewed and versioned in-repo; dynamic context is assembled per-run (memory written by local agents, tool/MCP results resolved at call time). This boundary is a reviewed, versioned decision (ADR-0008); moving a context type across it requires an ADR update.
180
204
  <!-- v3-ai-sdlc-init:end -->
package/CHANGELOG.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  All notable changes to oh-my-githubcopilot are documented here.
4
4
 
5
- ## [2.0.0] — 2026-06-13
5
+ ## [v2.0.0] — 2026-06-13
6
6
 
7
7
  ### Breaking Changes
8
8
  - **Agent parity (23→19):** Six agents removed, merged, or renamed:
package/README.md CHANGED
@@ -141,5 +141,5 @@ If omp saves you time, consider [sponsoring the project](https://github.com/spon
141
141
 
142
142
  <!-- v3-ai-sdlc-init:start -->
143
143
  ## AI SDLC v3
144
- This repo follows the v3 AI-SDLC layout. See `.ai/matrix.json`, `.memory/human-override/`, and `docs/architecture/adr/`. Modules at `r3dlex/skills/ai-sdlc-init/modules/`.
144
+ This repo follows the v3 AI-SDLC layout (`topology_type: standalone`, depth 0). `AGENTS.md` is the single source of truth; `CLAUDE.md` and `GEMINI.md` are thin pointers (ADR-0007). Workflow: [`.ai/workflows/repo-workflow.md`](.ai/workflows/repo-workflow.md) and [`.ai/workflows/repo-workflow.json`](.ai/workflows/repo-workflow.json). See `.ai/matrix.json`, `.memory/human-override/`, and `docs/architecture/adr/`. Modules at `r3dlex/skills/init-ai-repo/modules/`.
145
145
  <!-- v3-ai-sdlc-init:end -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-githubcopilot",
3
- "version": "2.0.0-alpha.1cd01f4",
3
+ "version": "2.0.0-alpha.2aedbd0",
4
4
  "description": "Multi-agent orchestration for GitHub Copilot CLI. 19 agents, 59 skills, parallel execution, HUD, PSM, SWE-bench.",
5
5
  "author": {
6
6
  "name": "r3dlex"