@open-agent-toolkit/cli 0.0.59 → 0.0.61
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/assets/docs/provider-sync/providers.md +1 -0
- package/assets/public-package-versions.json +4 -4
- package/assets/skills/oat-pjm-review-backlog/SKILL.md +23 -1
- package/assets/skills/oat-pjm-review-backlog/references/backlog-review-template.md +18 -6
- package/dist/providers/copilot/rule-transform.d.ts.map +1 -1
- package/dist/providers/copilot/rule-transform.js +15 -5
- package/package.json +2 -2
|
@@ -25,6 +25,7 @@ description: 'Provider-specific path mappings for Claude, Cursor, Copilot, Gemin
|
|
|
25
25
|
- Project: `.agents/skills` -> `.github/skills`, `.agents/agents` -> `.github/agents`, `.agents/rules` -> `.github/instructions`
|
|
26
26
|
- User: `~/.agents/skills` -> `~/.copilot/skills`, `~/.agents/agents` -> `~/.copilot/agents`
|
|
27
27
|
- Rule files render as `.github/instructions/*.instructions.md`
|
|
28
|
+
- Canonical always-on rules render with `applyTo: "**"` so Copilot activates them repo-wide; provider rules with exactly `applyTo: "**"` adopt back to `activation: always`
|
|
28
29
|
- Comma-containing globs are not supported for Copilot rule sync because Copilot uses a comma-separated `applyTo` field
|
|
29
30
|
|
|
30
31
|
=== "Gemini"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: oat-pjm-review-backlog
|
|
3
|
-
version: 1.
|
|
3
|
+
version: 1.1.0
|
|
4
4
|
description: Use when prioritizing the file-backed repo backlog or evaluating roadmap alignment. Produces value-effort ratings, dependency mapping, and execution recommendations.
|
|
5
5
|
argument-hint: '[backlog-root] [--roadmap=<path>] [--output=<path>]'
|
|
6
6
|
disable-model-invocation: true
|
|
@@ -18,6 +18,25 @@ Analyze the file-backed backlog under `.oat/repo/reference/backlog/` to produce
|
|
|
18
18
|
|
|
19
19
|
**Purpose:** Review active backlog item files, evaluate roadmap alignment, and recommend a practical execution order.
|
|
20
20
|
|
|
21
|
+
## Reference Format Convention
|
|
22
|
+
|
|
23
|
+
Whenever a backlog item is referenced — in the written review document, in chat output, or in the inline summary at the end — it **must include both the ID and a human-readable title**. Bare IDs like `bl-281c` are not acceptable in user-facing output, because readers do not have a board lookup in front of them.
|
|
24
|
+
|
|
25
|
+
Use one of these formats:
|
|
26
|
+
|
|
27
|
+
- **Inline / prose:** `` `bl-281c` (control-plane state-read migration) ``
|
|
28
|
+
- **Tables / lists:** `**bl-281c** — Control-plane state-read migration`
|
|
29
|
+
- **Compact lists where space is tight (e.g., dependency graphs):** an ID-only token is acceptable **only if** a legend in the same section maps every ID to its title.
|
|
30
|
+
|
|
31
|
+
This convention applies equally to:
|
|
32
|
+
|
|
33
|
+
- The "Top recommended next actions" summary
|
|
34
|
+
- Risks, gaps, and quick-wins callouts
|
|
35
|
+
- Any chat-level commentary about specific items
|
|
36
|
+
- All tables and item references in the written review document
|
|
37
|
+
|
|
38
|
+
If a title is missing from frontmatter, derive a short noun phrase from the item filename or `## Description` heading rather than falling back to a bare ID.
|
|
39
|
+
|
|
21
40
|
## Progress Indicators (User-Facing)
|
|
22
41
|
|
|
23
42
|
When executing this skill, provide lightweight progress feedback so the user can tell what’s happening after they confirm.
|
|
@@ -162,6 +181,8 @@ After writing the review, provide:
|
|
|
162
181
|
- Top 3 recommended next actions
|
|
163
182
|
- Key risks or gaps discovered
|
|
164
183
|
|
|
184
|
+
When listing specific items in this summary, follow the **Reference Format Convention** above — every backlog item must appear as `` `bl-XXXX` (human-readable title) `` (or the bold-with-em-dash variant in tables). Do not emit bare IDs.
|
|
185
|
+
|
|
165
186
|
## Success Criteria
|
|
166
187
|
|
|
167
188
|
- Every active backlog item file has a value-effort rating with rationale
|
|
@@ -169,3 +190,4 @@ After writing the review, provide:
|
|
|
169
190
|
- Parallel lanes and execution waves are actionable
|
|
170
191
|
- Roadmap alignment gaps are surfaced when roadmap input is present
|
|
171
192
|
- Output document follows the review template structure
|
|
193
|
+
- Every user-facing reference to a backlog item pairs the ID with a human-readable title (per the Reference Format Convention)
|
|
@@ -78,12 +78,19 @@ The backlog contains **{N} items** ({breakdown by section}) spanning {N} themes:
|
|
|
78
78
|
Legend: ──▶ hard dependency (must complete first)
|
|
79
79
|
- -▶ soft dependency (beneficial but not required)
|
|
80
80
|
|
|
81
|
-
{Render the full dependency graph here}
|
|
81
|
+
{Render the full dependency graph here using bare IDs}
|
|
82
82
|
|
|
83
83
|
{Group independent items at the bottom}
|
|
84
84
|
{item} [independent]
|
|
85
85
|
```
|
|
86
86
|
|
|
87
|
+
**ID legend** (every ID used above must appear here):
|
|
88
|
+
|
|
89
|
+
| ID | Title |
|
|
90
|
+
| ----- | ------------ |
|
|
91
|
+
| {BNN} | {Item Title} |
|
|
92
|
+
| ... | ... |
|
|
93
|
+
|
|
87
94
|
---
|
|
88
95
|
|
|
89
96
|
## 4. Parallel Lanes
|
|
@@ -95,9 +102,14 @@ These are independent work streams that can be tackled concurrently without conf
|
|
|
95
102
|
{Brief description of this work stream}
|
|
96
103
|
|
|
97
104
|
```
|
|
98
|
-
{Item sequence with arrows showing internal ordering}
|
|
105
|
+
{Item sequence with arrows showing internal ordering — bare IDs OK inside the diagram}
|
|
99
106
|
```
|
|
100
107
|
|
|
108
|
+
**Items in this lane:**
|
|
109
|
+
|
|
110
|
+
- **{BNN}** — {Title}
|
|
111
|
+
- ...
|
|
112
|
+
|
|
101
113
|
**Total estimated effort:** {Low/Medium/High}
|
|
102
114
|
**Cross-lane dependencies:** {Any connections to other lanes}
|
|
103
115
|
|
|
@@ -132,10 +144,10 @@ These are independent work streams that can be tackled concurrently without conf
|
|
|
132
144
|
|
|
133
145
|
### How backlog items map to roadmap phases
|
|
134
146
|
|
|
135
|
-
| Roadmap Phase | Status | Backlog Items
|
|
136
|
-
| ------------- | -------- |
|
|
137
|
-
| {Phase name} | {Status} | {BNN
|
|
138
|
-
| ... | ... | ...
|
|
147
|
+
| Roadmap Phase | Status | Backlog Items | Notes |
|
|
148
|
+
| ------------- | -------- | ---------------------------------------- | ------- |
|
|
149
|
+
| {Phase name} | {Status} | **{BNN}** — {Title}; **{BNN}** — {Title} | {Notes} |
|
|
150
|
+
| ... | ... | ... | ... |
|
|
139
151
|
|
|
140
152
|
### Gaps: Roadmap items without backlog coverage
|
|
141
153
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rule-transform.d.ts","sourceRoot":"","sources":["../../../src/providers/copilot/rule-transform.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"rule-transform.d.ts","sourceRoot":"","sources":["../../../src/providers/copilot/rule-transform.ts"],"names":[],"mappings":"AAsDA,wBAAgB,+BAA+B,CAC7C,gBAAgB,EAAE,MAAM,EACxB,aAAa,CAAC,EAAE,MAAM,GACrB,MAAM,CA4BR;AAED,wBAAgB,2BAA2B,CAAC,eAAe,EAAE,MAAM,GAAG,MAAM,CAa3E"}
|
|
@@ -29,6 +29,9 @@ function parseApplyTo(value) {
|
|
|
29
29
|
.filter(Boolean);
|
|
30
30
|
return globs.length > 0 ? globs : undefined;
|
|
31
31
|
}
|
|
32
|
+
function isRepoWideApplyTo(globs) {
|
|
33
|
+
return globs?.length === 1 && globs[0] === '**';
|
|
34
|
+
}
|
|
32
35
|
export function transformCanonicalToCopilotRule(canonicalContent, canonicalPath) {
|
|
33
36
|
const rule = parseCanonicalRuleMarkdown(canonicalContent);
|
|
34
37
|
if (rule.activation === 'glob' && rule.globs) {
|
|
@@ -41,9 +44,16 @@ export function transformCanonicalToCopilotRule(canonicalContent, canonicalPath)
|
|
|
41
44
|
: {}),
|
|
42
45
|
applyTo: rule.globs.join(','),
|
|
43
46
|
}
|
|
44
|
-
: rule.
|
|
45
|
-
? {
|
|
46
|
-
|
|
47
|
+
: rule.activation === 'always'
|
|
48
|
+
? {
|
|
49
|
+
...(rule.description !== undefined
|
|
50
|
+
? { description: rule.description }
|
|
51
|
+
: {}),
|
|
52
|
+
applyTo: '**',
|
|
53
|
+
}
|
|
54
|
+
: rule.description !== undefined
|
|
55
|
+
? { description: rule.description }
|
|
56
|
+
: null;
|
|
47
57
|
return appendGeneratedMarker(renderMarkdownWithFrontmatter(frontmatter, rule.body), canonicalPath);
|
|
48
58
|
}
|
|
49
59
|
export function parseCopilotRuleToCanonical(providerContent) {
|
|
@@ -52,7 +62,7 @@ export function parseCopilotRuleToCanonical(providerContent) {
|
|
|
52
62
|
const globs = parseApplyTo(frontmatter?.applyTo);
|
|
53
63
|
return renderCanonicalRuleMarkdown({
|
|
54
64
|
...(description !== undefined ? { description } : {}),
|
|
55
|
-
...(globs !== undefined ? { globs } : {}),
|
|
56
|
-
activation: globs ? 'glob' : 'always',
|
|
65
|
+
...(globs !== undefined && !isRepoWideApplyTo(globs) ? { globs } : {}),
|
|
66
|
+
activation: globs && !isRepoWideApplyTo(globs) ? 'glob' : 'always',
|
|
57
67
|
}, body);
|
|
58
68
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-agent-toolkit/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.61",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Open Agent Toolkit CLI",
|
|
6
6
|
"homepage": "https://github.com/voxmedia/open-agent-toolkit/tree/main/packages/cli",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"ora": "^9.0.0",
|
|
34
34
|
"yaml": "2.8.2",
|
|
35
35
|
"zod": "^3.25.76",
|
|
36
|
-
"@open-agent-toolkit/control-plane": "0.0.
|
|
36
|
+
"@open-agent-toolkit/control-plane": "0.0.61"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^22.10.0",
|