🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

oh-my-githubcopilot

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oh-my-githubcopilot - npm Package Compare versions

Comparing version
2.0.0-alpha.1cd01f4
to
2.0.0-alpha.2aedbd0
+25
-1
AGENTS.md

@@ -179,3 +179,27 @@ # OMP Agent Orchestration

## AI SDLC v3
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/`.
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).
### Workflow
- Workflow doc: [`.ai/workflows/repo-workflow.md`](.ai/workflows/repo-workflow.md)
- Workflow manifest: [`.ai/workflows/repo-workflow.json`](.ai/workflows/repo-workflow.json)
- Handoff index: [`.ai/handoff/init-ai-repo-handoff.md`](.ai/handoff/init-ai-repo-handoff.md)
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/`.
### Harness Map
The six context types this harness assembles, and where each lives (ADR-0008):
| Context type | Canonical source | Static or dynamic |
| --- | --- | --- |
| `Instructions` | `AGENTS.md`, `.ai/system-prompts/`, `.ai/rules/` | Static |
| `Knowledge` | `docs/architecture/`, `docs/specifications/`, `docs/learning/` | Static |
| `Memory` | `.memory/human-override/`, `.memory/self-learned/` | Dynamic |
| `Examples` | `.ai/evals/<set>/`, `docs/learning/concept-maps/` | Static |
| `Tools` | `.ai/skills/`, `.ai/mcp/registry.json` | Dynamic |
| `Guardrails` | `.ai/rules/security.md`, `.ai/rules/technical-bounds.md`, `.ai/policies/` | Static |
**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.
<!-- v3-ai-sdlc-init:end -->
+1
-1

@@ -5,3 +5,3 @@ # Changelog

## [2.0.0] — 2026-06-13
## [v2.0.0] — 2026-06-13

@@ -8,0 +8,0 @@ ### Breaking Changes

{
"name": "oh-my-githubcopilot",
"version": "2.0.0-alpha.1cd01f4",
"version": "2.0.0-alpha.2aedbd0",
"description": "Multi-agent orchestration for GitHub Copilot CLI. 19 agents, 59 skills, parallel execution, HUD, PSM, SWE-bench.",

@@ -5,0 +5,0 @@ "author": {

@@ -144,3 +144,3 @@ # oh-my-githubcopilot (omp)

## AI SDLC v3
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/`.
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/`.
<!-- v3-ai-sdlc-init:end -->