RuleStack

Configs

Stacks

Compare

Diff

RuleStack

Configs

Stacks

Compare

Diff

Read API

RuleStack

Configs

Stacks

Compare

Diff

Read API

Diff/kbwen-agentic-os-claude ↔ kbwen-agentic-os-github-copilot-instructions

Comparison

A · CLAUDE.md · KbWen/agentic-osB · Copilot instructions · KbWen/agentic-os
What each file covers, counted
DimensionSharedOnly in AOnly in BOverlap
Sections0530%
Commands000—
Section tags10150%

What each file covers

Sections

0 shared · 5 only in A · 3 only in B
  • − Claude Integration Entry
  • − Startup (every conversation)
  • − Slash Commands
  • − Skills
  • − Validate
  • + Copilot Repository Instructions
  • + Always Apply
  • + Useful Paths

Commands

neither file has any

Section tags

1 shared · 0 only in A · 1 only in B
  • + code-style
  •   agent-behaviour

Line diff

+15 added−25 removed6 unchanged19.4% identical
KbWen/agentic-os · CLAUDE.md
@@ −1 @@
1@AGENTS.md
2 
3# Claude Integration Entry
4 
5`AGENTS.md` is auto-injected above via `@import` — governance rules, gates, and state model are already in context. This file only adds Claude-specific dispatch. **Do NOT duplicate rules from AGENTS.md here.**
6 
7## Startup (every conversation)
 
 
 
 
8 
91. **At the start of a task, enter the governed flow in `AGENTS.md` before any file edit or completion claim — decide up front, not at the edit moment. No silent direct edits.**
102. Classify task scope from the user's message:
11 - `tiny-fix` (< 3 files, no semantic change) → skip to Step 5.
12 - `quick-win` (1–2 modules, clear scope) → read SSoT (Step 3), skip Step 4.
13 - `feature` / `architecture-change` / `hotfix` / uncertain → continue.
143. Read `.agentcortex/context/current_state.md` (SSoT). *(Skip for tiny-fix.)*
154. Read `.agent/rules/engineering_guardrails.md`. *(Skip for tiny-fix and quick-win.)*
165. If `.agentcortex/context/work/<worklog-key>.md` exists, read to resume. *(Skip for tiny-fix.)*
17 
18Token budget rationale: conditional loading saves ~5,000 tokens for tiny-fix, ~3,500 tokens for quick-win. Full mechanics: `AGENTS.md §vNext State Model`.
19 
20## Slash Commands
21 
22`/command` dispatches via `.claude/commands/<command>.md` → canonical workflow at `.agent/workflows/<command>.md`.
23 
24## Skills
25 
26Skill metadata: `.agent/skills/*`. Full instructions: `.agents/skills/*/SKILL.md`. Activation and cache policy: `AGENTS.md §Skill Safety & Precedence` and `§Shared Phase Contracts`.
27 
28## Validate
29 
30Run `.agentcortex/bin/validate.sh` (bash) or `.agentcortex/bin/validate.ps1` (PowerShell).
31 
KbWen/agentic-os · .github/copilot-instructions.md
@@ +1 @@
1# Copilot Repository Instructions
2 
3Use `AGENTS.md` as the shared source of truth for this repository's agent behavior. Keep this file short because Copilot code review reads only the early portion of custom instruction files.
4 
5## Always Apply
6 
7- Follow `AGENTS.md ## Review guidelines` for PR review priorities.
8- Prefer focused, file/line-specific findings over broad style suggestions.
9- Treat correctness, security, missing tests, governance-bypass, and stale spec/backlog/SSoT metadata as higher priority than formatting.
10- Do not duplicate or reinterpret Agentic OS workflow rules here; refer to `AGENTS.md` and `.agent/workflows/*.md`.
11- For governance files, verify that updates preserve canonical paths and include appropriate evidence.
12 
13## Useful Paths
 
 
 
 
 
 
 
14 
15- Shared agent contract: `AGENTS.md`
16- Claude adapter: `CLAUDE.md`
17- Gemini adapter: `GEMINI.md`
18- Governance workflows: `.agent/workflows/*.md`
19- Guard tests: `tests/guard/`
20- Contributor interaction guide: `docs/ai-contributors.md`
 
 
 
 
 
 
 
21 
@@ −1 +1 @@
1−@AGENTS.md
1+# Copilot Repository Instructions
22  
3−# Claude Integration Entry
3+Use `AGENTS.md` as the shared source of truth for this repository's agent behavior. Keep this file short because Copilot code review reads only the early portion of custom instruction files.
44  
5−`AGENTS.md` is auto-injected above via `@import` — governance rules, gates, and state model are already in context. This file only adds Claude-specific dispatch. **Do NOT duplicate rules from AGENTS.md here.**
5+## Always Apply
66  
7−## Startup (every conversation)
7+- Follow `AGENTS.md ## Review guidelines` for PR review priorities.
8+- Prefer focused, file/line-specific findings over broad style suggestions.
9+- Treat correctness, security, missing tests, governance-bypass, and stale spec/backlog/SSoT metadata as higher priority than formatting.
10+- Do not duplicate or reinterpret Agentic OS workflow rules here; refer to `AGENTS.md` and `.agent/workflows/*.md`.
11+- For governance files, verify that updates preserve canonical paths and include appropriate evidence.
812  
9−1. **At the start of a task, enter the governed flow in `AGENTS.md` before any file edit or completion claim — decide up front, not at the edit moment. No silent direct edits.**
10−2. Classify task scope from the user's message:
11− - `tiny-fix` (< 3 files, no semantic change) → skip to Step 5.
12− - `quick-win` (1–2 modules, clear scope) → read SSoT (Step 3), skip Step 4.
13− - `feature` / `architecture-change` / `hotfix` / uncertain → continue.
14−3. Read `.agentcortex/context/current_state.md` (SSoT). *(Skip for tiny-fix.)*
15−4. Read `.agent/rules/engineering_guardrails.md`. *(Skip for tiny-fix and quick-win.)*
16−5. If `.agentcortex/context/work/<worklog-key>.md` exists, read to resume. *(Skip for tiny-fix.)*
13+## Useful Paths
1714  
18−Token budget rationale: conditional loading saves ~5,000 tokens for tiny-fix, ~3,500 tokens for quick-win. Full mechanics: `AGENTS.md §vNext State Model`.
19− 
20−## Slash Commands
21− 
22−`/command` dispatches via `.claude/commands/<command>.md` → canonical workflow at `.agent/workflows/<command>.md`.
23− 
24−## Skills
25− 
26−Skill metadata: `.agent/skills/*`. Full instructions: `.agents/skills/*/SKILL.md`. Activation and cache policy: `AGENTS.md §Skill Safety & Precedence` and `§Shared Phase Contracts`.
27− 
28−## Validate
29− 
30−Run `.agentcortex/bin/validate.sh` (bash) or `.agentcortex/bin/validate.ps1` (PowerShell).
15+- Shared agent contract: `AGENTS.md`
16+- Claude adapter: `CLAUDE.md`
17+- Gemini adapter: `GEMINI.md`
18+- Governance workflows: `.agent/workflows/*.md`
19+- Guard tests: `tests/guard/`
20+- Contributor interaction guide: `docs/ai-contributors.md`
3121  
RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack

RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack

RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack