renma 0.16.0 → 0.17.0
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 +35 -1
- package/README.md +210 -749
- package/architecture.md +523 -0
- package/design.md +458 -0
- package/dist/cli-help.d.ts +7 -5
- package/dist/cli-help.d.ts.map +1 -1
- package/dist/cli-help.js +23 -9
- package/dist/cli-help.js.map +1 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +139 -40
- package/dist/cli.js.map +1 -1
- package/dist/commands/catalog.d.ts.map +1 -1
- package/dist/commands/catalog.js +4 -3
- package/dist/commands/catalog.js.map +1 -1
- package/dist/commands/graph.d.ts.map +1 -1
- package/dist/commands/graph.js +7 -12
- package/dist/commands/graph.js.map +1 -1
- package/dist/commands/readiness.d.ts.map +1 -1
- package/dist/commands/readiness.js +7 -6
- package/dist/commands/readiness.js.map +1 -1
- package/dist/commands/scaffold.d.ts.map +1 -1
- package/dist/commands/scaffold.js +14 -2
- package/dist/commands/scaffold.js.map +1 -1
- package/dist/commands/suggest-metadata.d.ts.map +1 -1
- package/dist/commands/suggest-metadata.js +54 -8
- package/dist/commands/suggest-metadata.js.map +1 -1
- package/dist/commands/suggest-semantic-split.js +3 -3
- package/dist/commands/suggest-semantic-split.js.map +1 -1
- package/dist/dependency-resolution.d.ts +6 -0
- package/dist/dependency-resolution.d.ts.map +1 -0
- package/dist/dependency-resolution.js +11 -0
- package/dist/dependency-resolution.js.map +1 -0
- package/dist/discovery.d.ts +28 -0
- package/dist/discovery.d.ts.map +1 -1
- package/dist/discovery.js +70 -15
- package/dist/discovery.js.map +1 -1
- package/dist/repository-paths.d.ts +13 -0
- package/dist/repository-paths.d.ts.map +1 -1
- package/dist/repository-paths.js +60 -2
- package/dist/repository-paths.js.map +1 -1
- package/dist/rules.d.ts.map +1 -1
- package/dist/rules.js +64 -85
- package/dist/rules.js.map +1 -1
- package/dist/trust-graph.d.ts.map +1 -1
- package/dist/trust-graph.js +7 -11
- package/dist/trust-graph.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.d.ts.map +1 -1
- package/docs/README.md +55 -0
- package/docs/advanced-skill-authoring.md +140 -0
- package/docs/agent-skills-compatibility.md +500 -0
- package/docs/authoring-guide.md +324 -0
- package/docs/context-conflict-diagnostics.md +32 -0
- package/docs/context-language-diagnostics.md +99 -0
- package/docs/context-lens.md +253 -0
- package/docs/context-lifecycle-diagnostics.md +55 -0
- package/docs/diagnostics.md +373 -0
- package/docs/metadata-budget.md +14 -0
- package/docs/repository-context-bom.md +113 -0
- package/docs/security-policy.md +338 -0
- package/docs/user-manual.md +813 -0
- package/examples/context-lens/README.md +101 -0
- package/examples/context-lens/contexts/testing/boundary-value-analysis.md +23 -0
- package/examples/context-lens/lenses/testing/spec-review-boundary-values.md +29 -0
- package/examples/context-lens/lenses/testing/test-design-boundary-values.md +29 -0
- package/examples/context-lens/skills/testing/spec-review/SKILL.md +49 -0
- package/examples/context-repo/README.md +149 -0
- package/examples/context-repo/contexts/domain/payment/idempotency.md +20 -0
- package/examples/context-repo/contexts/testing/boundary-value-analysis.md +19 -0
- package/examples/context-repo/contexts/testing/negative-testing.md +19 -0
- package/examples/context-repo/lenses/testing/spec-review-boundary-values.md +35 -0
- package/examples/context-repo/renma.config.json +12 -0
- package/examples/context-repo/skills/testing/spec-review/SKILL.md +66 -0
- package/examples/context-repo/tools/appium/README.md +14 -0
- package/examples/github-actions/renma-ci-report.yml +36 -0
- package/examples/interactive-placeholder/README.md +104 -0
- package/examples/interactive-placeholder/assets/template.txt +1 -0
- package/examples/interactive-placeholder/renma.config.json +6 -0
- package/examples/interactive-placeholder/skills/replace-placeholder/SKILL.md +54 -0
- package/examples/interactive-placeholder/tools/README.md +48 -0
- package/examples/interactive-placeholder/tools/placeholder-demo.mjs +99 -0
- package/package.json +8 -1
- package/plan-discovery.md +740 -0
- package/plan.md +150 -0
- package/scripts/verify-package.mjs +97 -0
package/design.md
ADDED
|
@@ -0,0 +1,458 @@
|
|
|
1
|
+
# Renma Product Design
|
|
2
|
+
|
|
3
|
+
Renma is a Git-native context repository and deterministic governance CLI for
|
|
4
|
+
repositories that hold LLM-facing knowledge.
|
|
5
|
+
|
|
6
|
+
Current product surface includes `scan`, `catalog`, `ownership`, `graph`,
|
|
7
|
+
focused graph views, `trust-graph`, `readiness`, Repository Context BOM reports,
|
|
8
|
+
repeated-context diagnostics, semantic diff, `ci-report`, `inspect`, `scaffold`,
|
|
9
|
+
`suggest-metadata`, `suggest-semantic-split`, Agent Skills validation, and
|
|
10
|
+
security diagnostics for agent-facing operational instructions.
|
|
11
|
+
|
|
12
|
+
Focused graph views are inspection tools; they do not choose, inject, or load runtime context for an agent.
|
|
13
|
+
|
|
14
|
+
Renma prepares deterministic repository evidence. Agents operate outside Renma
|
|
15
|
+
and decide how to consume repository assets according to their own runtime
|
|
16
|
+
behavior.
|
|
17
|
+
|
|
18
|
+
Renma helps teams keep shared knowledge discoverable, owned, validated,
|
|
19
|
+
reviewable, and reusable in Git. It is not an agent runtime and does not decide
|
|
20
|
+
what context an agent should load at task time.
|
|
21
|
+
|
|
22
|
+
## Core Distinction
|
|
23
|
+
|
|
24
|
+
```mermaid
|
|
25
|
+
flowchart LR
|
|
26
|
+
Skill["Skill: agent-facing entrypoint, routing contract, usage guide"]
|
|
27
|
+
Lens["Context Lens: purpose-oriented interpretation"]
|
|
28
|
+
Asset["Context Asset: independently owned source-of-truth knowledge"]
|
|
29
|
+
Skill -->|may reference| Lens
|
|
30
|
+
Skill -->|may reference directly| Asset
|
|
31
|
+
Lens -->|interprets| Asset
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Skills tell an agent when and how to use a capability. They can reference
|
|
35
|
+
context assets, ask preflight questions, describe safety gates, and define
|
|
36
|
+
verification expectations.
|
|
37
|
+
|
|
38
|
+
Context assets hold reusable expertise. They should be maintainable outside a
|
|
39
|
+
single skill, owned by the right team, versioned, reviewed, and reused across
|
|
40
|
+
skills, agents, tools, and future agent runtimes.
|
|
41
|
+
|
|
42
|
+
Context Lenses describe how one or more Context Assets should be interpreted for
|
|
43
|
+
a purpose. They are repository governance metadata, not runtime lens selection
|
|
44
|
+
or prompt assembly.
|
|
45
|
+
|
|
46
|
+
These arrows are declared repository relationships, not a runtime loading
|
|
47
|
+
pipeline. Renma validates them but does not select a Lens, choose task-specific
|
|
48
|
+
Context, or inject either asset into an agent session.
|
|
49
|
+
|
|
50
|
+
## Product Boundary
|
|
51
|
+
|
|
52
|
+
Renma owns repository quality and governance:
|
|
53
|
+
|
|
54
|
+
- Asset discovery and classification
|
|
55
|
+
- Owner, status, lifecycle, and metadata checks
|
|
56
|
+
- Broken reference and dependency checks
|
|
57
|
+
- Catalog and graph snapshots
|
|
58
|
+
- Orphaned, deprecated, archived, conflicting, and missing asset diagnostics
|
|
59
|
+
- Deterministic evidence for repeated or duplicated knowledge
|
|
60
|
+
- Deterministic readiness reports for repository maintainers
|
|
61
|
+
|
|
62
|
+
Renma does not own runtime behavior:
|
|
63
|
+
|
|
64
|
+
- No skill selection for a user task
|
|
65
|
+
- No prompt construction or context bundling
|
|
66
|
+
- No context injection into an agent
|
|
67
|
+
- No task-specific context choice service
|
|
68
|
+
- No tool execution on behalf of an agent
|
|
69
|
+
- No provider gateway or agent coordination layer
|
|
70
|
+
- No telemetry collection responsibility
|
|
71
|
+
|
|
72
|
+
Any future import of external signals from CI, IDE wrappers, agent plugins, or
|
|
73
|
+
other integrations must treat those signals as separately produced offline
|
|
74
|
+
review evidence. Renma itself is not telemetry-responsible.
|
|
75
|
+
|
|
76
|
+
## LLM-Actionable Diagnostics
|
|
77
|
+
|
|
78
|
+
Security diagnostics focus on conservative operational-instruction risks,
|
|
79
|
+
policy metadata, security profile resolution, approved network and upload
|
|
80
|
+
destination checks, and explicit human approval guards. They remain
|
|
81
|
+
deterministic repository checks, not runtime enforcement.
|
|
82
|
+
|
|
83
|
+
Security diagnostics are deterministic review guardrails for LLM-facing operational instructions. They flag patterns such as unpinned remote shell execution, unpinned dependency installs, privileged commands without nearby guardrails, predictable temporary paths, and credential-like command arguments; they do not replace SAST, secret scanning, dependency scanning, or human security review.
|
|
84
|
+
|
|
85
|
+
Security posture summaries in Readiness and CI reports describe effective
|
|
86
|
+
policy, security profile resolution, allowed data, forbidden inputs, approved
|
|
87
|
+
network and upload destinations, human approval requirements, and high-risk
|
|
88
|
+
findings without enforcing runtime behavior.
|
|
89
|
+
|
|
90
|
+
Trust Graph v1 is a deterministic interpretation of existing catalog, graph, scan, and security evidence. It exposes stable asset, owner, lifecycle, dependency, security profile, effective policy, and diagnostic evidence, but it does not introduce subjective trust scores or a separate runtime system. `scan` lists concrete problems, `graph` shows structural relationships, `trust-graph` connects trust-relevant evidence, and `readiness` summarizes repository-level preparedness.
|
|
91
|
+
|
|
92
|
+
Repository Context BOM v1 is a declared repository evidence snapshot: assets, hashes, owners, lifecycle states, dependencies, security posture, diagnostics, and readiness evidence. Snapshot consistency comes from one in-memory repository snapshot per BOM execution, not output formatting flags. `--omit-generated-at` only removes run-time generation timestamp noise; it does not ignore repository metadata timestamps such as `lastReviewedAt` or `expiresAt`, suppress freshness diagnostics, normalize environment-dependent absolute paths such as `root` or `configPath`, hide file moves, or provide portable byte-for-byte output across runners. The BOM does not claim actual LLM runtime usage. Actual consumed-context evidence remains a future separate artifact or attachment that external agents or wrappers may produce and Renma may later validate against the repository model. See `docs/repository-context-bom.md` for the resolved v1 contract.
|
|
93
|
+
|
|
94
|
+
Renma findings should be useful not only to humans, but also to LLM coding
|
|
95
|
+
agents. A good Renma diagnostic should explain what is wrong, why it matters for
|
|
96
|
+
repository governance, where the evidence is, what direction a safe fix should
|
|
97
|
+
take, what constraints must be preserved, and how to verify the fix.
|
|
98
|
+
|
|
99
|
+
Renma should not apply large semantic rewrites by itself. It should produce
|
|
100
|
+
structured diagnostics that can be pasted into Codex, Claude, Cursor, or another
|
|
101
|
+
agent to guide a reviewable repository patch.
|
|
102
|
+
|
|
103
|
+
Current diagnostics include evidence, `whyItMatters`, remediation, typed repair
|
|
104
|
+
constraints, verification steps, and LLM-facing hints where applicable. These
|
|
105
|
+
fields remain deterministic rule output, not LLM-generated validation.
|
|
106
|
+
|
|
107
|
+
Example diagnostic shape:
|
|
108
|
+
|
|
109
|
+
```json
|
|
110
|
+
{
|
|
111
|
+
"id": "RMA-SKILL-TOO-MONOLITHIC",
|
|
112
|
+
"severity": "medium",
|
|
113
|
+
"category": "structure",
|
|
114
|
+
"title": "Skill mixes reusable knowledge with usage guidance",
|
|
115
|
+
"evidence": {
|
|
116
|
+
"path": "skills/testing/test-case-generation/SKILL.md",
|
|
117
|
+
"startLine": 42,
|
|
118
|
+
"endLine": 78,
|
|
119
|
+
"snippet": "boundary value analysis"
|
|
120
|
+
},
|
|
121
|
+
"whyItMatters": "Reusable QA and domain knowledge should be owned, reviewed, and reused as shared context assets instead of being buried in one skill.",
|
|
122
|
+
"remediation": "Split reusable knowledge into first-class shared context assets and keep the skill as an LLM-facing usage guide.",
|
|
123
|
+
"constraints": [
|
|
124
|
+
"Do not introduce task context selection.",
|
|
125
|
+
"Do not create prompt packages.",
|
|
126
|
+
"Keep the skill as a routing contract / usage guide.",
|
|
127
|
+
"Each context asset should have id, owner, status, and short scope."
|
|
128
|
+
],
|
|
129
|
+
"verificationSteps": [
|
|
130
|
+
"Run renma scan.",
|
|
131
|
+
"Run any project-specific validation checks that apply to this repository.",
|
|
132
|
+
"Ensure the skill no longer mixes reusable domain knowledge with usage guidance."
|
|
133
|
+
],
|
|
134
|
+
"llmHint": "Create shared context assets for reusable QA knowledge, update skill metadata, and preserve the skill as a concise usage guide."
|
|
135
|
+
}
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
Central repair workflow:
|
|
139
|
+
|
|
140
|
+
1. A single `SKILL.md` contains reusable domain knowledge, tool guidance, and
|
|
141
|
+
QA heuristics.
|
|
142
|
+
2. Renma emits structured findings explaining that the skill is too monolithic
|
|
143
|
+
and mixes usage guidance with reusable context.
|
|
144
|
+
3. Codex or Claude reads the diagnostics and proposes a patch that moves
|
|
145
|
+
reusable knowledge into first-class context assets under `contexts/`, keeps
|
|
146
|
+
the skill concise, adds metadata, and updates declared context references.
|
|
147
|
+
4. A human reviews the patch.
|
|
148
|
+
5. Renma scans the repository again and confirms the skill/context separation is
|
|
149
|
+
healthier.
|
|
150
|
+
|
|
151
|
+
Optional LLM-assisted evaluation is advisory and outside core validation. See
|
|
152
|
+
`architecture.md` section `Optional LLM Evaluation Boundary` for the rule:
|
|
153
|
+
`scan`, catalog construction, and deterministic rule evaluation do not call an
|
|
154
|
+
LLM; optional helpers may prepare review bundles or suggestions for a human or
|
|
155
|
+
calling agent to apply.
|
|
156
|
+
|
|
157
|
+
## Repository Model
|
|
158
|
+
|
|
159
|
+
An illustrative repository shape gives shared Context Assets first-class space:
|
|
160
|
+
|
|
161
|
+
```text
|
|
162
|
+
skills/
|
|
163
|
+
testing/
|
|
164
|
+
test-case-generation/
|
|
165
|
+
SKILL.md
|
|
166
|
+
spec-review/
|
|
167
|
+
SKILL.md
|
|
168
|
+
regression-planning/
|
|
169
|
+
SKILL.md
|
|
170
|
+
|
|
171
|
+
contexts/
|
|
172
|
+
testing/
|
|
173
|
+
boundary-value-analysis.md
|
|
174
|
+
negative-testing.md
|
|
175
|
+
regression-risk.md
|
|
176
|
+
domain/
|
|
177
|
+
payment/
|
|
178
|
+
idempotency.md
|
|
179
|
+
duplicate-charge.md
|
|
180
|
+
refund-risk.md
|
|
181
|
+
mobile/
|
|
182
|
+
offline-behavior.md
|
|
183
|
+
background-resume.md
|
|
184
|
+
tools/
|
|
185
|
+
appium/
|
|
186
|
+
usage-guideline.md
|
|
187
|
+
limitations.md
|
|
188
|
+
teams/
|
|
189
|
+
checkout/
|
|
190
|
+
payment-api-contracts.md
|
|
191
|
+
known-risk-patterns.md
|
|
192
|
+
|
|
193
|
+
lenses/
|
|
194
|
+
testing/
|
|
195
|
+
spec-review-boundary-values.md
|
|
196
|
+
|
|
197
|
+
metadata/
|
|
198
|
+
graph/
|
|
199
|
+
catalog/
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
This is not a required layout for every repository asset. A repository may
|
|
203
|
+
organize Context Assets, Context Lenses, policies, references, evidence, and
|
|
204
|
+
other knowledge by domain, product, team, workflow, or a combination of those
|
|
205
|
+
dimensions. Canonical Skill entrypoints in 0.16.0 remain under
|
|
206
|
+
`skills/**/SKILL.md` and `.agents/skills/**/SKILL.md`; arbitrary Skill roots and
|
|
207
|
+
domain-local `*/skills/**/SKILL.md` layouts are not implemented. Renma's broader
|
|
208
|
+
model means repository knowledge need not be embedded inside those Skill
|
|
209
|
+
directories.
|
|
210
|
+
|
|
211
|
+
`contexts/` is preferred for shared context assets. `context/` remains supported
|
|
212
|
+
as a compatibility alias. Files under either root are classified as the
|
|
213
|
+
`context` artifact kind, not as `reference`. Experimental `context_lens` assets
|
|
214
|
+
can live under `lenses/`, or context files can opt in with `type: context_lens`.
|
|
215
|
+
|
|
216
|
+
Skill-local `assets/`, `profiles/`, `references/`, `examples/`, and `scripts/`
|
|
217
|
+
remain supported. They are useful for local routing variants, nearby examples,
|
|
218
|
+
Skill-specific supporting text, fixtures, and helpers. When evidence shows that
|
|
219
|
+
knowledge is reusable across Skills, teams, tools, or agents, it should move
|
|
220
|
+
into `contexts/` as an owned Context Asset. Shared helper implementations may
|
|
221
|
+
move to `tools/**`; location alone does not require either promotion.
|
|
222
|
+
|
|
223
|
+
Renma can also flag large skill-local support files as shared-context candidates when they contain generic source-of-truth structure such as setup, decision logic, troubleshooting, validation, constraints, policy, or procedure guidance. This advisory does not decide semantic reuse itself. It surfaces structurally broad support files and asks the calling LLM or human to inspect the repository for similar concepts, overlapping guidance, and reuse opportunities before making a reviewable patch.
|
|
224
|
+
|
|
225
|
+
Shared context assets should be organized by semantic scope, not migration state. Folders such as `contexts/promoted/` or `contexts/generated/` can be useful temporary staging concepts, but final context assets should live under meaning-oriented paths such as `contexts/tools/...`, `contexts/domain/...`, `contexts/testing/...`, `contexts/teams/...`, `contexts/policies/...`, or `contexts/platform/...`.
|
|
226
|
+
|
|
227
|
+
## Artifact Kinds
|
|
228
|
+
|
|
229
|
+
Renma normalizes scanned files into asset kinds:
|
|
230
|
+
|
|
231
|
+
- `skill`: LLM-facing entrypoint, routing contract, and usage guide
|
|
232
|
+
- `context`: shared source-of-truth knowledge asset under `contexts/` or
|
|
233
|
+
`context/`
|
|
234
|
+
- `context_lens`: purpose-oriented interpretation layer over context assets
|
|
235
|
+
- `profile`: skill-local overlay or variant
|
|
236
|
+
- `reference`: skill-local supporting material
|
|
237
|
+
- `example`: skill-local example or fixture text
|
|
238
|
+
- `agent`: repository or agent instruction file
|
|
239
|
+
- `config`: Renma configuration
|
|
240
|
+
- `unknown`: scanned file that does not match a known kind
|
|
241
|
+
|
|
242
|
+
The dedicated `context` kind is central to the product model. It lets catalog,
|
|
243
|
+
graph, and validation output distinguish reusable team-owned knowledge from
|
|
244
|
+
skill-local reference material.
|
|
245
|
+
|
|
246
|
+
## Context Asset Metadata
|
|
247
|
+
|
|
248
|
+
Context assets should use small, reviewable metadata blocks:
|
|
249
|
+
|
|
250
|
+
```yaml
|
|
251
|
+
---
|
|
252
|
+
id: context.testing.boundary-value-analysis-v2
|
|
253
|
+
title: Boundary Value Analysis
|
|
254
|
+
owner: qa-platform
|
|
255
|
+
status: stable
|
|
256
|
+
version: 1.0.0
|
|
257
|
+
tags:
|
|
258
|
+
- testing
|
|
259
|
+
- qa
|
|
260
|
+
when_to_use:
|
|
261
|
+
- Designing tests around numeric, date, quantity, or limit boundaries
|
|
262
|
+
when_not_to_use:
|
|
263
|
+
- Exploratory testing notes that do not depend on boundaries
|
|
264
|
+
requires_context:
|
|
265
|
+
- testing.negative-testing
|
|
266
|
+
optional_context:
|
|
267
|
+
- context.domain.payment.duplicate-charge
|
|
268
|
+
conflicts:
|
|
269
|
+
- context.testing.boundary-value-analysis-v1
|
|
270
|
+
superseded_by:
|
|
271
|
+
- context.testing.boundary-value-analysis-v3
|
|
272
|
+
---
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
The current parser supports YAML-style block lists for selected deterministic metadata fields. Supported block-list fields are `tags`, `when_to_use`, `when_not_to_use`, `requires_context`, `optional_context`, `conflicts`, and `superseded_by`; arbitrary nested maps are not metadata.
|
|
276
|
+
|
|
277
|
+
Initial status values:
|
|
278
|
+
|
|
279
|
+
- `experimental`
|
|
280
|
+
- `stable`
|
|
281
|
+
- `deprecated`
|
|
282
|
+
- `archived`
|
|
283
|
+
|
|
284
|
+
`status` describes lifecycle only. It should not be used for replacement,
|
|
285
|
+
delegation, migration provenance, or canonical-source relationships. For
|
|
286
|
+
example, a skill-local reference replaced by a shared context asset should use a
|
|
287
|
+
valid lifecycle status such as `deprecated`, plus a separate relationship field
|
|
288
|
+
such as `superseded_by: contexts/tools/example/setup.md` when the repository
|
|
289
|
+
needs to preserve that link. Renma may catalog `superseded_by` as a static
|
|
290
|
+
reference relationship, but it should not treat values such as `active` or
|
|
291
|
+
`delegated` as valid lifecycle statuses.
|
|
292
|
+
|
|
293
|
+
When reusable knowledge is promoted from a skill-local support file into
|
|
294
|
+
`contexts/`, the original `skills/*/references/` file may remain temporarily as
|
|
295
|
+
a compatibility shim. Renma can warn when a skill still routes readers through a
|
|
296
|
+
deprecated or superseded local support asset instead of referencing the
|
|
297
|
+
canonical shared context directly.
|
|
298
|
+
|
|
299
|
+
Renma can also warn when other repository assets continue to reference a
|
|
300
|
+
deprecated or superseded support file instead of the canonical shared context.
|
|
301
|
+
This broader advisory helps remove hidden indirection after context promotion
|
|
302
|
+
while preserving compatibility shims when they are intentionally needed.
|
|
303
|
+
|
|
304
|
+
Renma starts deterministic validation for fields it actually uses: duplicate IDs,
|
|
305
|
+
invalid statuses, missing owner or ID on published shared context, unknown
|
|
306
|
+
declared references, dependencies on deprecated or archived assets, and orphaned
|
|
307
|
+
first-class shared context assets. Declared references resolve by exact asset ID
|
|
308
|
+
or repository-relative path, with a leading `./` normalized away. Renma does not
|
|
309
|
+
use fuzzy matching, semantic search, LLM inference, or runtime context selection
|
|
310
|
+
for these checks.
|
|
311
|
+
|
|
312
|
+
## Dependency Model
|
|
313
|
+
|
|
314
|
+
Dependencies are typed relationships between assets:
|
|
315
|
+
|
|
316
|
+
- `requires`: the target asset is needed for the source asset to be complete
|
|
317
|
+
- `optional`: useful context that is not always required
|
|
318
|
+
- `applies_to`: context asset interpreted by a context lens
|
|
319
|
+
- `conflicts`: assets that should not both be active without human review
|
|
320
|
+
- `extends`: overlay or profile relationship
|
|
321
|
+
- `references`: declared static relationship from a skill or support asset toward a context asset or local file
|
|
322
|
+
- `covered_by`: evaluation or evidence coverage relationship
|
|
323
|
+
|
|
324
|
+
Edges should carry source evidence: path, range when available, declaration
|
|
325
|
+
form, and enough snippet text for review.
|
|
326
|
+
|
|
327
|
+
The graph is repository evidence. It must not become a task-specific context selector.
|
|
328
|
+
|
|
329
|
+
## Core Workflow
|
|
330
|
+
|
|
331
|
+
Renma should keep the deterministic path boring and reliable:
|
|
332
|
+
|
|
333
|
+
1. Load configuration from defaults, config files, and CLI flags.
|
|
334
|
+
2. Discover bounded repository files with stable POSIX-style paths.
|
|
335
|
+
3. Classify artifacts into normalized kinds, including first-class `context`.
|
|
336
|
+
4. Parse Markdown, frontmatter, headings, links, code fences, and metadata.
|
|
337
|
+
5. Build catalog entries with IDs, kind, source path, content hash, owner,
|
|
338
|
+
status, tags, declared dependencies, dependents, and diagnostics.
|
|
339
|
+
6. Build graph snapshots from declared references and dependency metadata.
|
|
340
|
+
7. Run deterministic rules over parsed files and graph evidence.
|
|
341
|
+
8. Emit the command's documented text, JSON, Markdown, or Mermaid projection
|
|
342
|
+
for Git review and CI.
|
|
343
|
+
|
|
344
|
+
Optional LLM assistance may help with semantic split suggestions, duplicate
|
|
345
|
+
labeling, or review summaries. LLM output is advisory. Deterministic evidence is
|
|
346
|
+
the authority.
|
|
347
|
+
|
|
348
|
+
## Rules
|
|
349
|
+
|
|
350
|
+
Implemented deterministic rules focus on repository health:
|
|
351
|
+
|
|
352
|
+
- Missing context asset ID
|
|
353
|
+
- Missing owner on shared context assets
|
|
354
|
+
- Invalid lifecycle status
|
|
355
|
+
- Duplicate asset IDs
|
|
356
|
+
- Unknown declared references
|
|
357
|
+
- Declared dependency on deprecated or archived context
|
|
358
|
+
- Orphaned shared context asset
|
|
359
|
+
- Superseded local support asset reference advisories
|
|
360
|
+
- Oversized skill entrypoint
|
|
361
|
+
- Skill may contain reusable context worth extracting
|
|
362
|
+
- Oversized context or skill-local support file
|
|
363
|
+
- Missing skill routing guidance
|
|
364
|
+
- Missing negative routing guidance
|
|
365
|
+
- Missing preflight or verification guidance
|
|
366
|
+
- Unused skill-local profile, reference, or example
|
|
367
|
+
- Literal secret-like values
|
|
368
|
+
- Destructive commands without nearby confirmation or recovery guidance
|
|
369
|
+
- Risky remote defaults
|
|
370
|
+
- Broad environment copying into subprocesses
|
|
371
|
+
- Hardcoded user-local paths in reusable guidance
|
|
372
|
+
|
|
373
|
+
Current reporting includes deterministic Readiness output, ownership coverage,
|
|
374
|
+
graph snapshots, repeated-context diagnostics, semantic diff, Trust Graph,
|
|
375
|
+
Repository Context BOM, security posture summaries, CI reports, and optional
|
|
376
|
+
LLM-friendly review bundles. These are repository projections and evidence, not
|
|
377
|
+
runtime selection or execution services.
|
|
378
|
+
|
|
379
|
+
Passing Renma checks does not prove a workflow is safe. It means the repository
|
|
380
|
+
met the deterministic governance checks that were enabled.
|
|
381
|
+
|
|
382
|
+
## QA And Testing Focus
|
|
383
|
+
|
|
384
|
+
QA/testing is the first strong product focus because teams often ask agents to
|
|
385
|
+
generate tests while the real expertise lives in scattered documents or senior
|
|
386
|
+
engineers' heads.
|
|
387
|
+
|
|
388
|
+
Good context assets in this domain include:
|
|
389
|
+
|
|
390
|
+
- Boundary value analysis
|
|
391
|
+
- Negative testing heuristics
|
|
392
|
+
- Regression risk models
|
|
393
|
+
- Payment idempotency and duplicate-charge risk
|
|
394
|
+
- Refund edge cases
|
|
395
|
+
- Mobile offline and background-resume behavior
|
|
396
|
+
- Appium usage limits
|
|
397
|
+
- Team-specific test strategy
|
|
398
|
+
- Known checkout or payment contract risks
|
|
399
|
+
|
|
400
|
+
Skills can reference those assets for tasks such as test-case generation, spec
|
|
401
|
+
review, regression planning, or release readiness. The context assets remain
|
|
402
|
+
the source of truth.
|
|
403
|
+
|
|
404
|
+
## Catalog Output
|
|
405
|
+
|
|
406
|
+
`renma catalog` should provide deterministic inventory:
|
|
407
|
+
|
|
408
|
+
- ID
|
|
409
|
+
- Kind
|
|
410
|
+
- Source path
|
|
411
|
+
- Content hash
|
|
412
|
+
- Owner
|
|
413
|
+
- Status
|
|
414
|
+
- Tags
|
|
415
|
+
- Declared dependencies
|
|
416
|
+
- Dependents
|
|
417
|
+
- Diagnostics
|
|
418
|
+
|
|
419
|
+
Catalog output should be stable across filesystems and Node versions so diffs
|
|
420
|
+
are useful in pull requests.
|
|
421
|
+
|
|
422
|
+
## Repository Health Readiness
|
|
423
|
+
|
|
424
|
+
Readiness v1 is a deterministic static repository-health report for maintainers:
|
|
425
|
+
|
|
426
|
+
```bash
|
|
427
|
+
renma readiness [path] [--format json|markdown]
|
|
428
|
+
```
|
|
429
|
+
|
|
430
|
+
It answers repository-level questions:
|
|
431
|
+
|
|
432
|
+
- Are shared context assets identifiable and owned?
|
|
433
|
+
- Are lifecycle states explicit?
|
|
434
|
+
- Are skills clear entrypoints rather than overloaded knowledge dumps?
|
|
435
|
+
- Are dependency declarations resolvable?
|
|
436
|
+
- Are deprecated or archived assets still reachable?
|
|
437
|
+
- Are important context assets orphaned?
|
|
438
|
+
- Is repeated knowledge visible enough for maintainers to consolidate it?
|
|
439
|
+
- Which changed assets affect which skills or teams?
|
|
440
|
+
|
|
441
|
+
Readiness is about preparing the repository for agents. It is not a guarantee
|
|
442
|
+
about any particular agent run.
|
|
443
|
+
|
|
444
|
+
The Markdown report is intentionally compact for PR review: level, score, workflow readiness, graph resolution, ownership coverage, diagnostics, and layout status. The JSON report exposes the same deterministic facts for CI.
|
|
445
|
+
|
|
446
|
+
Readiness does not call an LLM, select runtime context, assemble prompts, auto-repair files, perform cross-document semantic consistency analysis, score repairability, or plan per-skill patches.
|
|
447
|
+
|
|
448
|
+
## Implementation Principles
|
|
449
|
+
|
|
450
|
+
- Prefer deterministic analysis over hidden inference.
|
|
451
|
+
- Keep the CLI minimal-dependency and Git-friendly.
|
|
452
|
+
- Keep repository paths stable and portable.
|
|
453
|
+
- Parse structured metadata instead of relying on ad hoc text matching where
|
|
454
|
+
reasonable.
|
|
455
|
+
- Preserve human ownership and review.
|
|
456
|
+
- Treat existing documents as changeable product design, not sacred API.
|
|
457
|
+
- Make shared context first-class before adding external signal features.
|
|
458
|
+
- Design for gradual adoption in repositories that already have skill debt.
|
package/dist/cli-help.d.ts
CHANGED
|
@@ -102,7 +102,7 @@ export declare const COMMAND_HELP: readonly [{
|
|
|
102
102
|
readonly doNotUseFor: readonly ["Automatically rewriting files or applying fixes.", "An agent inventing owners, references, source-of-truth documents, or product rules.", "Selecting runtime context for an LLM or assembling task prompts."];
|
|
103
103
|
readonly examples: readonly ["renma scan .", "renma scan . --format json", "renma scan . --fail-on high"];
|
|
104
104
|
readonly interpretation: readonly ["Text output is a human-readable finding list.", "JSON output includes structured diagnostics, review bundles, and guidance intended for downstream tools and coding agents.", "Agent Skills migration commands use structured command and args fields in JSON; text display paths use POSIX shell quoting when needed.", "When repair constraints or verification steps are present, follow them instead of broadening the edit."];
|
|
105
|
-
readonly nextSteps: readonly ["Inspect evidence before editing.", "Prepare a minimal reviewable patch that preserves supported semantics.", "Rerun scan and any relevant structural commands after editing."];
|
|
105
|
+
readonly nextSteps: readonly ["Inspect evidence before editing.", "Use suggest-metadata only when metadata retrofit or Skill migration work is needed.", "Prepare a minimal reviewable patch that preserves supported semantics.", "Rerun scan with --fail-on high and any relevant structural commands after editing."];
|
|
106
106
|
readonly options: readonly ["config", "fail-on", {
|
|
107
107
|
readonly name: "format";
|
|
108
108
|
readonly description: "Output format: text or json. Defaults to text.";
|
|
@@ -244,8 +244,8 @@ export declare const COMMAND_HELP: readonly [{
|
|
|
244
244
|
readonly useWhen: readonly ["You are creating a new skill, context asset, or context lens.", "You want a starter file or prompt with expected metadata and sections.", "You need a deterministic starting point before authoring content."];
|
|
245
245
|
readonly doNotUseFor: readonly ["Generating a complete production-ready skill or context.", "Inventing domain knowledge merely to fill the template.", "Replacing author-provided purpose, routing boundaries, inputs, completion criteria, verification, or references."];
|
|
246
246
|
readonly examples: readonly ["renma scaffold skill skills/testing/spec-review/SKILL.md --owner qa-platform", "renma scaffold context contexts/testing/boundary-value-analysis.md --owner qa-platform", "renma scaffold context_lens lenses/testing/spec-review-boundary-values.md --owner qa-platform", "renma scaffold skill skills/testing/spec-review/SKILL.md --owner qa-platform --format prompt"];
|
|
247
|
-
readonly interpretation: readonly ["File mode creates the scaffold file at the target path and refuses to overwrite existing files.", "Prompt and JSON modes print to stdout instead of creating the scaffold file.", "Generated scaffold content is a starting structure, not a complete asset.", "
|
|
248
|
-
readonly nextSteps: readonly ["
|
|
247
|
+
readonly interpretation: readonly ["File mode creates the scaffold file at the target path and refuses to overwrite existing files.", "Prompt and JSON modes print to stdout instead of creating the scaffold file.", "Generated scaffold content is a starting structure, not a complete asset.", "For Skills, use the platform's standard Skill authoring guidance to complete the description, instructions, workflow, constraints, and completion criteria.", "Domain knowledge must come from evidence or human input."];
|
|
248
|
+
readonly nextSteps: readonly ["Review and complete the generated content with evidence-backed details.", "Run renma scan . --fail-on high, fix relevant diagnostics, and rerun the scan.", "Have a human review meaningful semantic content before merging."];
|
|
249
249
|
readonly options: readonly [{
|
|
250
250
|
readonly name: "format";
|
|
251
251
|
readonly description: "Output format: file, prompt, or json. Defaults to file. File mode writes the scaffold to the target path and requires --owner. Prompt and JSON modes print to stdout instead of creating the target file.";
|
|
@@ -261,8 +261,8 @@ export declare const COMMAND_HELP: readonly [{
|
|
|
261
261
|
readonly useWhen: readonly ["An asset lacks compact metadata and you want a reviewable metadata patch.", "A Skill with pre-0.16 Renma fields needs an Agent Skills plus metadata.renma.* conversion proposal.", "A skill.md or *.skill.md entrypoint needs its required rename or move reported.", "A canonical Agent Skill needs an explicit metadata.renma.owner candidate from --owner.", "You need guidance that preserves the existing Markdown body and semantics.", "A human explicitly provides an owner with --owner or the asset already declares one."];
|
|
262
262
|
readonly doNotUseFor: readonly ["Editing the file automatically.", "Converting a canonical Agent Skill back to pre-0.16 Renma frontmatter.", "Silently resolving blocked, conflicting, duplicate, or unknown migration input.", "Changing the Markdown body or asset semantics unless explicitly requested.", "Inferring an owner without evidence."];
|
|
263
263
|
readonly examples: readonly ["renma suggest-metadata skills/testing/spec-review/SKILL.md --format prompt", "renma suggest-metadata skills/testing/spec-review/SKILL.md --owner qa-platform --format json", "renma suggest-metadata skills/testing/spec-review.skill.md --format json"];
|
|
264
|
-
readonly interpretation: readonly ["The command prints to stdout and does not edit the target file.", "For Skill targets, canonical frontmatter is omitted when migration is unsafe or ambiguous.", "Historical skill.md and *.skill.md filename forms report the required rename or move in structured output.", "A path migration is blocked when the target exists separately or the rendered target Skill remains specification-invalid.", "For canonical Agent Skills, --owner can propose a metadata retrofit without reverse migration.", "Without --owner, do not add owner metadata unless the asset already declares one or a maintainer confirms it.", "Preserve existing Markdown body and semantics for a metadata-only retrofit."];
|
|
265
|
-
readonly nextSteps: readonly ["
|
|
264
|
+
readonly interpretation: readonly ["The command prints to stdout and does not edit the target file.", "For Skill targets, canonical frontmatter is omitted when migration is unsafe or ambiguous.", "Historical skill.md and *.skill.md filename forms report the required rename or move in structured output.", "A path migration is blocked when the target exists separately or the rendered target Skill remains specification-invalid.", "For canonical Agent Skills, --owner can propose a metadata retrofit without reverse migration.", "Without --owner, do not add owner metadata unless the asset already declares one or a maintainer confirms it.", "Preserve existing Markdown body and semantics for a metadata-only retrofit.", "For Skills, metadata review is only one part of authoring review; use the platform's standard Skill guidance for the trigger description, instructions, workflow, constraints, and completion criteria."];
|
|
265
|
+
readonly nextSteps: readonly ["Review the output; apply only an available, intended, evidence-backed metadata or migration candidate.", "If no proposal is available, preserve the source unless a separate intentional authoring change is reviewed.", "After intended changes, run renma scan . --fail-on high, fix relevant diagnostics, and rerun the scan.", "Report any missing owner, reference, or source-of-truth uncertainty."];
|
|
266
266
|
readonly options: readonly [{
|
|
267
267
|
readonly name: "format";
|
|
268
268
|
readonly description: "Output format: prompt or json. Defaults to prompt. The command prints to stdout and does not edit the target file.";
|
|
@@ -287,6 +287,8 @@ export declare const COMMAND_HELP: readonly [{
|
|
|
287
287
|
}];
|
|
288
288
|
export type CommandName = (typeof COMMAND_HELP)[number]["name"];
|
|
289
289
|
export declare function isCommandName(value: string): value is CommandName;
|
|
290
|
+
/** Return the documented option names accepted by one command. */
|
|
291
|
+
export declare function commandOptionNames(name: CommandName): CliOptionName[];
|
|
290
292
|
export declare function renderGlobalHelp(version: string): string;
|
|
291
293
|
export declare function renderCommandHelp(name: CommandName, version: string): string;
|
|
292
294
|
export {};
|
package/dist/cli-help.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli-help.d.ts","sourceRoot":"","sources":["../src/cli-help.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,SAAS,MAAM,EAAE,CAAC;IAC3B,WAAW,EAAE,SAAS,MAAM,EAAE,CAAC;IAC/B,QAAQ,EAAE,SAAS,MAAM,EAAE,CAAC;IAC5B,cAAc,EAAE,SAAS,MAAM,EAAE,CAAC;IAClC,SAAS,EAAE,SAAS,MAAM,EAAE,CAAC;IAC7B,OAAO,EAAE,SAAS,iBAAiB,EAAE,CAAC;CACvC;AAED,MAAM,MAAM,iBAAiB,GACzB,aAAa,GACb;IACE,IAAI,EAAE,aAAa,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEN,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8EP,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,MAAM,OAAO,WAAW,CAAC;AAErD,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"cli-help.d.ts","sourceRoot":"","sources":["../src/cli-help.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,SAAS,MAAM,EAAE,CAAC;IAC3B,WAAW,EAAE,SAAS,MAAM,EAAE,CAAC;IAC/B,QAAQ,EAAE,SAAS,MAAM,EAAE,CAAC;IAC5B,cAAc,EAAE,SAAS,MAAM,EAAE,CAAC;IAClC,SAAS,EAAE,SAAS,MAAM,EAAE,CAAC;IAC7B,OAAO,EAAE,SAAS,iBAAiB,EAAE,CAAC;CACvC;AAED,MAAM,MAAM,iBAAiB,GACzB,aAAa,GACb;IACE,IAAI,EAAE,aAAa,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEN,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8EP,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,MAAM,OAAO,WAAW,CAAC;AAErD,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgkBkB,CAAC;AAE5C,MAAM,MAAM,WAAW,GAAG,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC;AAMhE,wBAAgB,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,WAAW,CAEjE;AAED,kEAAkE;AAClE,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,WAAW,GAAG,aAAa,EAAE,CAIrE;AAED,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAiDxD;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAyC5E"}
|
package/dist/cli-help.js
CHANGED
|
@@ -105,8 +105,9 @@ export const COMMAND_HELP = [
|
|
|
105
105
|
],
|
|
106
106
|
nextSteps: [
|
|
107
107
|
"Inspect evidence before editing.",
|
|
108
|
+
"Use suggest-metadata only when metadata retrofit or Skill migration work is needed.",
|
|
108
109
|
"Prepare a minimal reviewable patch that preserves supported semantics.",
|
|
109
|
-
"Rerun scan and any relevant structural commands after editing.",
|
|
110
|
+
"Rerun scan with --fail-on high and any relevant structural commands after editing.",
|
|
110
111
|
],
|
|
111
112
|
options: [
|
|
112
113
|
"config",
|
|
@@ -512,12 +513,12 @@ export const COMMAND_HELP = [
|
|
|
512
513
|
"File mode creates the scaffold file at the target path and refuses to overwrite existing files.",
|
|
513
514
|
"Prompt and JSON modes print to stdout instead of creating the scaffold file.",
|
|
514
515
|
"Generated scaffold content is a starting structure, not a complete asset.",
|
|
515
|
-
"
|
|
516
|
+
"For Skills, use the platform's standard Skill authoring guidance to complete the description, instructions, workflow, constraints, and completion criteria.",
|
|
516
517
|
"Domain knowledge must come from evidence or human input.",
|
|
517
518
|
],
|
|
518
519
|
nextSteps: [
|
|
519
|
-
"
|
|
520
|
-
"Run scan
|
|
520
|
+
"Review and complete the generated content with evidence-backed details.",
|
|
521
|
+
"Run renma scan . --fail-on high, fix relevant diagnostics, and rerun the scan.",
|
|
521
522
|
"Have a human review meaningful semantic content before merging.",
|
|
522
523
|
],
|
|
523
524
|
options: [
|
|
@@ -568,10 +569,12 @@ export const COMMAND_HELP = [
|
|
|
568
569
|
"For canonical Agent Skills, --owner can propose a metadata retrofit without reverse migration.",
|
|
569
570
|
"Without --owner, do not add owner metadata unless the asset already declares one or a maintainer confirms it.",
|
|
570
571
|
"Preserve existing Markdown body and semantics for a metadata-only retrofit.",
|
|
572
|
+
"For Skills, metadata review is only one part of authoring review; use the platform's standard Skill guidance for the trigger description, instructions, workflow, constraints, and completion criteria.",
|
|
571
573
|
],
|
|
572
574
|
nextSteps: [
|
|
573
|
-
"
|
|
574
|
-
"
|
|
575
|
+
"Review the output; apply only an available, intended, evidence-backed metadata or migration candidate.",
|
|
576
|
+
"If no proposal is available, preserve the source unless a separate intentional authoring change is reviewed.",
|
|
577
|
+
"After intended changes, run renma scan . --fail-on high, fix relevant diagnostics, and rerun the scan.",
|
|
575
578
|
"Report any missing owner, reference, or source-of-truth uncertainty.",
|
|
576
579
|
],
|
|
577
580
|
options: [
|
|
@@ -633,6 +636,13 @@ const COMMAND_MAP = new Map(COMMAND_HELP.map((command) => [command.name, command
|
|
|
633
636
|
export function isCommandName(value) {
|
|
634
637
|
return COMMAND_MAP.has(value);
|
|
635
638
|
}
|
|
639
|
+
/** Return the documented option names accepted by one command. */
|
|
640
|
+
export function commandOptionNames(name) {
|
|
641
|
+
const command = COMMAND_MAP.get(name);
|
|
642
|
+
if (!command)
|
|
643
|
+
return [];
|
|
644
|
+
return [...new Set(command.options.map(commandOptionName))];
|
|
645
|
+
}
|
|
636
646
|
export function renderGlobalHelp(version) {
|
|
637
647
|
return [
|
|
638
648
|
`renma ${version}`,
|
|
@@ -652,20 +662,24 @@ export function renderGlobalHelp(version) {
|
|
|
652
662
|
" renma <command> --help",
|
|
653
663
|
"",
|
|
654
664
|
"Start here: existing repository",
|
|
655
|
-
"
|
|
665
|
+
" review existing Skills with your platform's standard Skill authoring guidance",
|
|
666
|
+
" renma scan . --fail-on high",
|
|
667
|
+
" inspect relevant diagnostics and repository evidence",
|
|
668
|
+
" use suggest-metadata only for metadata retrofit or Skill migration work",
|
|
656
669
|
" renma catalog . --format markdown",
|
|
657
670
|
" renma graph . --format markdown",
|
|
658
671
|
" renma readiness . --format markdown",
|
|
659
672
|
"",
|
|
660
673
|
"Start here: new skill",
|
|
661
674
|
" renma scaffold skill skills/<name>/SKILL.md --owner <owner>",
|
|
662
|
-
"
|
|
675
|
+
" review and complete it with your platform's standard Skill authoring guidance",
|
|
676
|
+
" renma scan . --fail-on high",
|
|
663
677
|
" renma catalog . --format markdown",
|
|
664
678
|
" renma graph . --format markdown",
|
|
665
679
|
" renma readiness . --format markdown",
|
|
666
680
|
"",
|
|
667
681
|
"Normal maintenance loop",
|
|
668
|
-
"
|
|
682
|
+
" authoring review -> intended changes -> repository validation -> fix -> rerun -> human review",
|
|
669
683
|
"",
|
|
670
684
|
"Commands",
|
|
671
685
|
...COMMAND_HELP.map((command) => ` ${command.name.padEnd(24)} ${command.question}`),
|
package/dist/cli-help.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli-help.js","sourceRoot":"","sources":["../src/cli-help.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"cli-help.js","sourceRoot":"","sources":["../src/cli-help.ts"],"names":[],"mappings":"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"}
|