projecta-rrr 1.22.3 → 1.22.4
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/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ All notable changes to RRR will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
|
|
7
|
+
## [1.22.4] - 2026-04-19
|
|
8
|
+
|
|
9
|
+
**Patch: semantic search wired into 5 agents; rrr-explore tool names fixed.**
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- **`rrr-explore` broken tool names** — was referencing `mcp:semantic_search` / `mcp:search_sessions` (unresolvable shorthand), replaced with real tool names `mcp__rrr-search-hosted__semantic_search` and `mcp__rrr-search-hosted__search_sessions` throughout frontmatter and all body examples. Semantic search was silently falling back to grep/bash on every invocation.
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- **Semantic search added to 4 agents** that previously had none:
|
|
16
|
+
- `rrr-verifier` — finds feature implementations for goal-backward verification
|
|
17
|
+
- `rrr-integration-checker` — finds cross-phase connection points
|
|
18
|
+
- `rrr-project-researcher` — adds codebase search to supplement web/Context7 research; also gets `search_sessions`
|
|
19
|
+
- `rrr-roadmapper` — useful for brownfield codebase mapping
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
7
23
|
## [1.22.3] - 2026-04-19
|
|
8
24
|
|
|
9
25
|
**Patch: postinstall full provision + tool-disallow real-payload subagent detection + hook wiring.**
|
package/agents/rrr-explore.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: rrr-explore
|
|
3
|
-
description: Code exploration agent. Semantic-first via
|
|
3
|
+
description: Code exploration agent. Semantic-first via mcp__rrr-search-hosted__semantic_search; narrow Bash for exact identifiers only.
|
|
4
4
|
model: haiku
|
|
5
|
-
tools: Bash,
|
|
5
|
+
tools: Bash, mcp__rrr-search-hosted__semantic_search, mcp__rrr-search__semantic_search, mcp__rrr-search-hosted__search_sessions, mcp__rrr-search__search_sessions
|
|
6
6
|
disallowedTools: [Read, Grep, Glob]
|
|
7
7
|
bashAllowList:
|
|
8
8
|
- "rg"
|
|
@@ -23,7 +23,7 @@ You are a RRR code exploration agent. You explore codebases using intelligent se
|
|
|
23
23
|
|
|
24
24
|
**No narration:** Do NOT emit text between tool calls. Think, call tools, return structured findings at the end. Inter-call prose burns tokens and degrades Haiku output quality.
|
|
25
25
|
|
|
26
|
-
**Read/Grep/Glob are disabled for you.** Use `
|
|
26
|
+
**Read/Grep/Glob are disabled for you.** Use `mcp__rrr-search-hosted__semantic_search` for concepts, `mcp__rrr-search-hosted__search_sessions` for decision history, and narrow Bash (`rg`, `git log/show/blame`, `ls`, `wc` only) for exact-identifier fallback. If you genuinely need to read a whole file, return a `needs_read: <path>` hint and let the caller do it.
|
|
27
27
|
|
|
28
28
|
**Core Responsibilities:**
|
|
29
29
|
|
|
@@ -104,7 +104,7 @@ Start with questions 1 and 2. Only use question 3 when you have specific identif
|
|
|
104
104
|
|
|
105
105
|
**Invocation:**
|
|
106
106
|
```
|
|
107
|
-
|
|
107
|
+
mcp__rrr-search-hosted__semantic_search query="authentication flow" limit=10
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
### Use search_sessions (for historical context):
|
|
@@ -117,7 +117,7 @@ mcp:semantic_search query="authentication flow" limit=10
|
|
|
117
117
|
|
|
118
118
|
**Invocation:**
|
|
119
119
|
```
|
|
120
|
-
|
|
120
|
+
mcp__rrr-search-hosted__search_sessions query="why PostgreSQL over MongoDB" limit=5
|
|
121
121
|
```
|
|
122
122
|
|
|
123
123
|
### Use Bash (`rg` only) for exact identifiers:
|
|
@@ -243,12 +243,12 @@ Use search_sessions for understanding past decisions:
|
|
|
243
243
|
User: "Why did we use JWT instead of sessions?"
|
|
244
244
|
|
|
245
245
|
1. Query session history:
|
|
246
|
-
|
|
246
|
+
mcp__rrr-search-hosted__search_sessions query="JWT vs sessions authentication decision"
|
|
247
247
|
|
|
248
248
|
2. Review results for decision context
|
|
249
249
|
|
|
250
250
|
3. If needed, supplement with semantic_search for current implementation:
|
|
251
|
-
|
|
251
|
+
mcp__rrr-search-hosted__semantic_search query="JWT authentication implementation"
|
|
252
252
|
```
|
|
253
253
|
|
|
254
254
|
**Typical usage:**
|
|
@@ -271,12 +271,12 @@ Before searching, clarify:
|
|
|
271
271
|
|
|
272
272
|
**For conceptual code questions (most common):**
|
|
273
273
|
```
|
|
274
|
-
|
|
274
|
+
mcp__rrr-search-hosted__semantic_search query="how user authentication works" limit=10
|
|
275
275
|
```
|
|
276
276
|
|
|
277
277
|
**For past decisions and context:**
|
|
278
278
|
```
|
|
279
|
-
|
|
279
|
+
mcp__rrr-search-hosted__search_sessions query="why we chose JWT over sessions" limit=5
|
|
280
280
|
```
|
|
281
281
|
|
|
282
282
|
**For exact identifiers (specific lookup):**
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: rrr-integration-checker
|
|
3
3
|
description: Verifies cross-phase integration and E2E flows. Checks that phases connect properly and user workflows complete end-to-end.
|
|
4
4
|
model: haiku
|
|
5
|
-
tools: Read, Bash, Grep, Glob
|
|
5
|
+
tools: Read, Bash, Grep, Glob, mcp__rrr-search-hosted__semantic_search, mcp__rrr-search__semantic_search
|
|
6
6
|
color: blue
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: rrr-project-researcher
|
|
3
3
|
description: Researches domain ecosystem. Supports two modes - project research (.planning/research/) and milestone research (.planning/milestones/vX.Y/research/). Milestone research inherits from project research.
|
|
4
4
|
model: sonnet
|
|
5
|
-
tools: Read, Write, Bash, Grep, Glob, WebSearch, WebFetch, mcp__context7__
|
|
5
|
+
tools: Read, Write, Bash, Grep, Glob, WebSearch, WebFetch, mcp__context7__*, mcp__rrr-search-hosted__semantic_search, mcp__rrr-search__semantic_search, mcp__rrr-search-hosted__search_sessions, mcp__rrr-search__search_sessions
|
|
6
6
|
color: cyan
|
|
7
7
|
---
|
|
8
8
|
|
package/agents/rrr-roadmapper.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: rrr-roadmapper
|
|
3
3
|
description: Creates project roadmaps with phase breakdown, requirement mapping, success criteria derivation, and coverage validation. Spawned by /rrr:new-project orchestrator.
|
|
4
4
|
model: sonnet
|
|
5
|
-
tools: Read, Write, Bash, Glob, Grep
|
|
5
|
+
tools: Read, Write, Bash, Glob, Grep, mcp__rrr-search-hosted__semantic_search, mcp__rrr-search__semantic_search
|
|
6
6
|
color: purple
|
|
7
7
|
---
|
|
8
8
|
|
package/agents/rrr-verifier.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: rrr-verifier
|
|
3
3
|
description: Verifies phase goal achievement through goal-backward analysis. Checks codebase delivers what phase promised, not just that tasks completed. Creates VERIFICATION.md report.
|
|
4
4
|
model: sonnet
|
|
5
|
-
tools: Read, Bash, Grep, Glob
|
|
5
|
+
tools: Read, Bash, Grep, Glob, mcp__rrr-search-hosted__semantic_search, mcp__rrr-search__semantic_search
|
|
6
6
|
color: green
|
|
7
7
|
---
|
|
8
8
|
|
package/package.json
CHANGED