Skip to content

Commit 86348e4

Browse files
committed
Merge remote-tracking branch 'origin/main' into main
Landed the complete 5-router command model, unified Jira router, guardrails system, and full public web/book synchronization after resolving merge conflicts by taking the reviewed final state.
2 parents 7edff07 + a79c140 commit 86348e4

233 files changed

Lines changed: 30428 additions & 10210 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/workflows/skill-review.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ integrations/copilot/.github/copilot-instructions.md.*
2424
.claude/teams/
2525
.claude/tasks.json
2626

27+
# Gemini local session state
28+
.gemini/
29+
2730
# Dependencies
2831
node_modules/
2932

@@ -49,4 +52,4 @@ docs/context-quality-benchmark.md
4952

5053
INDUSTRY_REVIEW.md
5154
RECOMMENDATIONS.md
52-
codebase_researcher.md
55+
codebase_researcher.md

available_skills.txt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
adr
2+
assist-review
3+
bughunt
4+
change
5+
coverage
6+
debug
7+
decompose
8+
deep-review
9+
deploy-checklist
10+
discover
11+
documentation
12+
draft
13+
impact
14+
implement
15+
incident-response
16+
index
17+
init
18+
jira-create
19+
jira-preview
20+
learn
21+
new-track
22+
quick-review
23+
revert
24+
review
25+
standup
26+
status
27+
tech-debt
28+
testing-strategy
29+
tour

core/agents/architect.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Each module typically contains some combination of:
9999

100100
```
101101
[auth] ──> [database]
102-
102+
│ │
103103
└──> [config] <──┘
104104
105105
[logging] (shared, no deps)
@@ -130,7 +130,7 @@ When modules form a circular dependency (A → B → A), apply this decision pro
130130
Before (cycle):
131131
```
132132
[user-service] ──> [notification-service]
133-
133+
↑ │
134134
└────────────────────┘
135135
```
136136
`user-service` imports `sendNotification` from `notification-service`.
@@ -141,9 +141,9 @@ Analysis: Both modules need user preference data. Extract it.
141141
After (resolved):
142142
```
143143
[user-preferences] (new - extracted shared concern)
144-
145-
146-
[user-service] [notification-service]
144+
↑ ↑
145+
│ │
146+
[user-service] [notification-service]
147147
148148
└──> [notification-service]
149149
```
@@ -191,11 +191,11 @@ Stories flow through three stages:
191191
```
192192
// Story: [Module/File Name]
193193
//
194-
// Input: [what this module/function receives]
194+
// Input: [what this module/function receives]
195195
// Process:
196-
// 1. [first algorithmic step]
197-
// 2. [second algorithmic step]
198-
// 3. [third algorithmic step]
196+
// 1. [first algorithmic step]
197+
// 2. [second algorithmic step]
198+
// 3. [third algorithmic step]
199199
// Output: [what this module/function produces]
200200
//
201201
// Dependencies: [what this module relies on]

core/agents/rca.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Track data transformation through the system:
9696
```
9797
input: { userId: "abc", role: "admin" }
9898
→ after auth middleware (file:line): { userId: "abc", role: "admin", verified: true }
99-
→ after service layer (file:line): { userId: "abc", role: null } ← DATA LOST HERE
99+
→ after service layer (file:line): { userId: "abc", role: null } ← DATA LOST HERE
100100
→ at failure point (file:line): TypeError: cannot read 'role' of null
101101
```
102102

0 commit comments

Comments
 (0)