@grant-vine/wunderkind 0.9.7 → 0.9.8
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/.claude-plugin/plugin.json +1 -1
- package/README.md +1 -1
- package/commands/docs-index.md +13 -17
- package/dist/agents/docs-config.d.ts +1 -1
- package/dist/agents/docs-config.js +4 -4
- package/dist/agents/docs-config.js.map +1 -1
- package/dist/agents/docs-index-plan.d.ts +12 -16
- package/dist/agents/docs-index-plan.d.ts.map +1 -1
- package/dist/agents/docs-index-plan.js +25 -76
- package/dist/agents/docs-index-plan.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -236,7 +236,7 @@ When enabled, agents can persist their decisions and strategies to your project'
|
|
|
236
236
|
|
|
237
237
|
1. **Enable** via `wunderkind init --docs-path ./docs`
|
|
238
238
|
2. **Configure** in `.wunderkind/wunderkind.config.jsonc` via `docsEnabled`, `docsPath`, and `docHistoryMode`.
|
|
239
|
-
3. **
|
|
239
|
+
3. **Refresh or bootstrap** via `/docs-index`. This is an executable plugin command that asks eligible Wunderkind agents to refresh their canonical managed docs or create them if missing, then updates the docs index and can optionally offer `init-deep` as a follow-up question.
|
|
240
240
|
|
|
241
241
|
---
|
|
242
242
|
|
package/commands/docs-index.md
CHANGED
|
@@ -3,7 +3,7 @@ description: Regenerate Wunderkind-managed project documentation and refresh the
|
|
|
3
3
|
agent: product-wunderkind
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are coordinating
|
|
6
|
+
You are coordinating a lightweight Wunderkind documentation refresh/bootstrap workflow for this project.
|
|
7
7
|
|
|
8
8
|
## Command
|
|
9
9
|
|
|
@@ -12,34 +12,30 @@ This command is invoked as `/docs-index`.
|
|
|
12
12
|
## Responsibilities
|
|
13
13
|
|
|
14
14
|
1. Inspect only the configured docs directory inside the current project root and only the files relevant to this workflow.
|
|
15
|
-
2. Use the built-in Wunderkind docs ownership rules and canonical filenames
|
|
16
|
-
3.
|
|
17
|
-
4.
|
|
18
|
-
5.
|
|
19
|
-
6.
|
|
20
|
-
7.
|
|
21
|
-
8. Only after full success across all planned children, run `init-deep` so the refreshed documentation structure is reflected in agent knowledge.
|
|
15
|
+
2. Use the built-in Wunderkind docs ownership rules and canonical filenames as managed home files for eligible docs agents.
|
|
16
|
+
3. Decide which managed docs should be refreshed and which should be bootstrapped from scratch when missing.
|
|
17
|
+
4. Have docs-eligible Wunderkind subagents perform their documentation work in their own managed lanes.
|
|
18
|
+
5. Refresh the docs index so it reflects the current managed documents, even when the run is only partially successful.
|
|
19
|
+
6. Summarize the outcome plainly as created, refreshed, skipped, and failed.
|
|
20
|
+
7. After the refresh, ask the user whether they want to run `init-deep` as a follow-up.
|
|
22
21
|
|
|
23
22
|
## Constraints
|
|
24
23
|
|
|
25
24
|
- Only docs-eligible Wunderkind agents should participate.
|
|
26
|
-
- One background task per eligible docs agent.
|
|
27
25
|
- Use canonical filenames from Wunderkind's built-in ownership map and normalize non-canonical legacy files.
|
|
28
|
-
- Do not let individual agents invent output paths;
|
|
26
|
+
- Do not let individual agents invent output paths; keep each eligible agent in its canonical managed home file.
|
|
29
27
|
- Treat the current working directory as the trust boundary. Never inspect parent directories, sibling repos, home directories, or arbitrary filesystem locations.
|
|
30
28
|
- Never glob or search outside the configured docs directory, `.wunderkind/`, `AGENTS.md`, `.sisyphus/`, and this shipped `/docs-index` command asset.
|
|
31
|
-
-
|
|
32
|
-
- Each child must emit an explicit completion result for its own canonical target.
|
|
33
|
-
- If a critical failure occurs in generation or normalization, do **not** run `init-deep`.
|
|
34
|
-
- Surface partial failures clearly, but still write an index for the successfully completed child outputs.
|
|
29
|
+
- Surface partial failures clearly, but still keep the docs index aligned with the successfully refreshed or created outputs.
|
|
35
30
|
|
|
36
31
|
## Notes
|
|
37
32
|
|
|
38
33
|
- This command is shipped as `/docs-index`.
|
|
39
34
|
- Use the configured docs path and history mode from project-local Wunderkind config. The docs path must remain relative to the current project root.
|
|
40
|
-
- The coordinator owns
|
|
41
|
-
-
|
|
42
|
-
- Partial success
|
|
35
|
+
- The coordinator owns the docs index and overall summary; individual agents own their own canonical managed home files.
|
|
36
|
+
- Refresh or bootstrap each canonical file in place: refresh if present, create it if missing.
|
|
37
|
+
- Partial success is acceptable for docs refresh.
|
|
38
|
+
- After the run, ask the user whether to run `init-deep` as an optional follow-up.
|
|
43
39
|
|
|
44
40
|
<user-request>
|
|
45
41
|
$ARGUMENTS
|
|
@@ -6,7 +6,7 @@ export interface AgentDocsConfig {
|
|
|
6
6
|
export declare const DOCS_INDEX_RUNTIME_STATUS: {
|
|
7
7
|
readonly invocation: "/docs-index";
|
|
8
8
|
readonly executable: true;
|
|
9
|
-
readonly reason: "Implemented as a plugin command via commands/docs-index.md and intended
|
|
9
|
+
readonly reason: "Implemented as a plugin command via commands/docs-index.md and intended for lightweight refresh/bootstrap of managed project docs.";
|
|
10
10
|
};
|
|
11
11
|
export declare function getDocsEligibleAgentKeys(): string[];
|
|
12
12
|
export declare const AGENT_DOCS_CONFIG: Record<string, AgentDocsConfig>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export const DOCS_INDEX_RUNTIME_STATUS = {
|
|
2
2
|
invocation: "/docs-index",
|
|
3
3
|
executable: true,
|
|
4
|
-
reason: "Implemented as a plugin command via commands/docs-index.md and intended
|
|
4
|
+
reason: "Implemented as a plugin command via commands/docs-index.md and intended for lightweight refresh/bootstrap of managed project docs.",
|
|
5
5
|
};
|
|
6
6
|
export function getDocsEligibleAgentKeys() {
|
|
7
7
|
return Object.entries(AGENT_DOCS_CONFIG)
|
|
@@ -74,10 +74,10 @@ History mode: ${docHistoryMode}
|
|
|
74
74
|
Use the configured docs path exactly as provided: ${docsPath}
|
|
75
75
|
The docs path is always relative to the current project root. Do not inspect or write outside that root.
|
|
76
76
|
|
|
77
|
-
|
|
77
|
+
Within \`/docs-index\`, treat this file as your managed home file. Refresh its contents if it already exists, or create it if missing.
|
|
78
78
|
|
|
79
|
-
Each eligible docs agent owns its own canonical document output
|
|
79
|
+
Each eligible docs agent owns its own canonical document output and should stay within that managed lane unless the user explicitly asks for something broader.
|
|
80
80
|
|
|
81
|
-
The
|
|
81
|
+
The \`/docs-index\` command refreshes or bootstraps project docs from all angles, summarizes what was created/refreshed/failed, and may offer an optional follow-up question about running \`init-deep\`.`;
|
|
82
82
|
}
|
|
83
83
|
//# sourceMappingURL=docs-config.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"docs-config.js","sourceRoot":"","sources":["../../src/agents/docs-config.ts"],"names":[],"mappings":"AAOA,MAAM,CAAC,MAAM,yBAAyB,GAAG;IACvC,UAAU,EAAE,aAAa;IACzB,UAAU,EAAE,IAAI;IAChB,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"docs-config.js","sourceRoot":"","sources":["../../src/agents/docs-config.ts"],"names":[],"mappings":"AAOA,MAAM,CAAC,MAAM,yBAAyB,GAAG;IACvC,UAAU,EAAE,aAAa;IACzB,UAAU,EAAE,IAAI;IAChB,MAAM,EAAE,oIAAoI;CACpI,CAAA;AAEV,MAAM,UAAU,wBAAwB;IACtC,OAAO,MAAM,CAAC,OAAO,CAAC,iBAAiB,CAAC;SACrC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC;SACvC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,CAAA;AACxB,CAAC;AAED,MAAM,CAAC,MAAM,iBAAiB,GAAoC;IAChE,sBAAsB,EAAE;QACtB,iBAAiB,EAAE,uBAAuB;QAC1C,QAAQ,EAAE,IAAI;KACf;IACD,mBAAmB,EAAE;QACnB,iBAAiB,EAAE,qBAAqB;QACxC,QAAQ,EAAE,IAAI;KACf;IACD,oBAAoB,EAAE;QACpB,iBAAiB,EAAE,sBAAsB;QACzC,QAAQ,EAAE,IAAI;KACf;IACD,sBAAsB,EAAE;QACtB,iBAAiB,EAAE,0BAA0B;QAC7C,QAAQ,EAAE,IAAI;KACf;IACD,eAAe,EAAE;QACf,iBAAiB,EAAE,qBAAqB;QACxC,QAAQ,EAAE,IAAI;KACf;IACD,eAAe,EAAE;QACf,iBAAiB,EAAE,iBAAiB;QACpC,QAAQ,EAAE,IAAI;KACf;IACD,iBAAiB,EAAE;QACjB,iBAAiB,EAAE,iBAAiB;QACpC,QAAQ,EAAE,IAAI;KACf;IACD,IAAI,EAAE;QACJ,iBAAiB,EAAE,uBAAuB;QAC1C,QAAQ,EAAE,IAAI;KACf;IACD,mBAAmB,EAAE;QACnB,iBAAiB,EAAE,qBAAqB;QACxC,QAAQ,EAAE,IAAI;KACf;IACD,eAAe,EAAE;QACf,iBAAiB,EAAE,gBAAgB;QACnC,QAAQ,EAAE,KAAK;KAChB;IACD,kBAAkB,EAAE;QAClB,iBAAiB,EAAE,kBAAkB;QACrC,QAAQ,EAAE,KAAK;KAChB;IACD,cAAc,EAAE;QACd,iBAAiB,EAAE,kBAAkB;QACrC,QAAQ,EAAE,KAAK;KAChB;CACF,CAAA;AAED,MAAM,UAAU,oBAAoB,CAClC,QAAgB,EAChB,QAAgB,EAChB,cAA8B;IAE9B,MAAM,MAAM,GAAG,iBAAiB,CAAC,QAAQ,CAAC,CAAA;IAC1C,IAAI,CAAC,MAAM,EAAE,CAAC;QACZ,MAAM,IAAI,KAAK,CAAC,sBAAsB,QAAQ,EAAE,CAAC,CAAA;IACnD,CAAC;IAED,OAAO,0CAA0C,QAAQ,IAAI,MAAM,CAAC,iBAAiB;;gBAEvE,cAAc;;;;;;oDAMsB,QAAQ;;;;;;;0MAO8I,CAAA;AAC1M,CAAC"}
|
|
@@ -3,26 +3,22 @@ export interface DocsIndexPlanEntry {
|
|
|
3
3
|
canonicalFilename: string;
|
|
4
4
|
targetPath: string;
|
|
5
5
|
}
|
|
6
|
-
export type DocsIndexTaskStatus = "complete" | "failed" | "timed_out";
|
|
7
|
-
export interface DocsIndexTaskResult {
|
|
8
|
-
agentKey: string;
|
|
9
|
-
targetPath: string;
|
|
10
|
-
status: DocsIndexTaskStatus;
|
|
11
|
-
notes: string[];
|
|
12
|
-
}
|
|
13
6
|
export interface DocsIndexPlan {
|
|
14
7
|
docsPath: string;
|
|
15
8
|
entries: DocsIndexPlanEntry[];
|
|
16
9
|
}
|
|
17
|
-
export interface
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
10
|
+
export interface DocsIndexSummary {
|
|
11
|
+
created: string[];
|
|
12
|
+
refreshed: string[];
|
|
13
|
+
skipped: string[];
|
|
14
|
+
failed: string[];
|
|
15
|
+
}
|
|
16
|
+
export interface DocsIndexSummaryInput {
|
|
17
|
+
existingBefore: string[];
|
|
18
|
+
existingAfter: string[];
|
|
19
|
+
skippedAgentKeys?: string[];
|
|
21
20
|
}
|
|
22
21
|
export declare function buildDocsIndexPlan(docsPath: string, cwd?: string): DocsIndexPlan;
|
|
23
|
-
export declare function
|
|
24
|
-
export declare function
|
|
25
|
-
export declare function buildDocsIndexCompletionTag(result: DocsIndexTaskResult): string;
|
|
26
|
-
export declare function parseDocsIndexCompletionTag(output: string): DocsIndexTaskResult | null;
|
|
27
|
-
export declare function aggregateDocsIndexResults(plan: DocsIndexPlan, results: DocsIndexTaskResult[], existingPaths: string[]): DocsIndexAggregation;
|
|
22
|
+
export declare function validateDocsIndexPlan(plan: DocsIndexPlan): string[];
|
|
23
|
+
export declare function summarizeDocsIndexResults(plan: DocsIndexPlan, input: DocsIndexSummaryInput): DocsIndexSummary;
|
|
28
24
|
//# sourceMappingURL=docs-index-plan.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"docs-index-plan.d.ts","sourceRoot":"","sources":["../../src/agents/docs-index-plan.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,kBAAkB;IACjC,QAAQ,EAAE,MAAM,CAAA;IAChB,iBAAiB,EAAE,MAAM,CAAA;IACzB,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,
|
|
1
|
+
{"version":3,"file":"docs-index-plan.d.ts","sourceRoot":"","sources":["../../src/agents/docs-index-plan.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,kBAAkB;IACjC,QAAQ,EAAE,MAAM,CAAA;IAChB,iBAAiB,EAAE,MAAM,CAAA;IACzB,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,WAAW,aAAa;IAC5B,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,EAAE,kBAAkB,EAAE,CAAA;CAC9B;AAED,MAAM,WAAW,gBAAgB;IAC/B,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB,SAAS,EAAE,MAAM,EAAE,CAAA;IACnB,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB,MAAM,EAAE,MAAM,EAAE,CAAA;CACjB;AAED,MAAM,WAAW,qBAAqB;IACpC,cAAc,EAAE,MAAM,EAAE,CAAA;IACxB,aAAa,EAAE,MAAM,EAAE,CAAA;IACvB,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAA;CAC5B;AAED,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,GAAG,GAAE,MAAsB,GAAG,aAAa,CAmB/F;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,aAAa,GAAG,MAAM,EAAE,CAcnE;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,aAAa,EAAE,KAAK,EAAE,qBAAqB,GAAG,gBAAgB,CAgC7G"}
|
|
@@ -18,96 +18,45 @@ export function buildDocsIndexPlan(docsPath, cwd = process.cwd()) {
|
|
|
18
18
|
entries,
|
|
19
19
|
};
|
|
20
20
|
}
|
|
21
|
-
export function
|
|
21
|
+
export function validateDocsIndexPlan(plan) {
|
|
22
22
|
const seen = new Map();
|
|
23
|
-
const
|
|
23
|
+
const duplicates = [];
|
|
24
24
|
for (const entry of plan.entries) {
|
|
25
25
|
const existing = seen.get(entry.targetPath);
|
|
26
26
|
if (existing) {
|
|
27
|
-
|
|
27
|
+
duplicates.push(`${existing} <-> ${entry.agentKey} => ${entry.targetPath}`);
|
|
28
28
|
continue;
|
|
29
29
|
}
|
|
30
30
|
seen.set(entry.targetPath, entry.agentKey);
|
|
31
31
|
}
|
|
32
|
-
return
|
|
32
|
+
return duplicates;
|
|
33
33
|
}
|
|
34
|
-
export function
|
|
35
|
-
const
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
const
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
`agentKey=${result.agentKey}`,
|
|
43
|
-
`targetPath=${result.targetPath}`,
|
|
44
|
-
`status=${result.status}`,
|
|
45
|
-
`notes=${notes}`,
|
|
46
|
-
"</wunderkind-docs-index-result>",
|
|
47
|
-
].join("\n");
|
|
48
|
-
}
|
|
49
|
-
export function parseDocsIndexCompletionTag(output) {
|
|
50
|
-
const match = output.match(/<wunderkind-docs-index-result>\s*agentKey=(.+)\s*targetPath=(.+)\s*status=(complete|failed|timed_out)\s*notes=(.*)\s*<\/wunderkind-docs-index-result>/s);
|
|
51
|
-
if (!match)
|
|
52
|
-
return null;
|
|
53
|
-
const [, agentKey, targetPath, status, notes] = match;
|
|
54
|
-
if (agentKey === undefined || targetPath === undefined || status === undefined || notes === undefined) {
|
|
55
|
-
return null;
|
|
56
|
-
}
|
|
57
|
-
return {
|
|
58
|
-
agentKey: agentKey.trim(),
|
|
59
|
-
targetPath: targetPath.trim(),
|
|
60
|
-
status: status.trim(),
|
|
61
|
-
notes: notes.trim() === "" ? [] : notes.split("|").map((item) => item.trim()).filter(Boolean),
|
|
62
|
-
};
|
|
63
|
-
}
|
|
64
|
-
export function aggregateDocsIndexResults(plan, results, existingPaths) {
|
|
65
|
-
const existing = new Set(existingPaths);
|
|
66
|
-
const resultsByEntry = new Map();
|
|
67
|
-
for (const result of results) {
|
|
68
|
-
const key = `${result.agentKey}::${result.targetPath}`;
|
|
69
|
-
const current = resultsByEntry.get(key);
|
|
70
|
-
if (current) {
|
|
71
|
-
current.push(result);
|
|
72
|
-
}
|
|
73
|
-
else {
|
|
74
|
-
resultsByEntry.set(key, [result]);
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
const completed = [];
|
|
78
|
-
const incomplete = [];
|
|
34
|
+
export function summarizeDocsIndexResults(plan, input) {
|
|
35
|
+
const existingBefore = new Set(input.existingBefore);
|
|
36
|
+
const existingAfter = new Set(input.existingAfter);
|
|
37
|
+
const skippedAgentKeys = new Set(input.skippedAgentKeys ?? []);
|
|
38
|
+
const created = [];
|
|
39
|
+
const refreshed = [];
|
|
40
|
+
const skipped = [];
|
|
41
|
+
const failed = [];
|
|
79
42
|
for (const entry of plan.entries) {
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
if (matching.length !== 1) {
|
|
83
|
-
incomplete.push({
|
|
84
|
-
agentKey: entry.agentKey,
|
|
85
|
-
targetPath: entry.targetPath,
|
|
86
|
-
status: "failed",
|
|
87
|
-
notes: [matching.length === 0 ? "missing completion result" : "duplicate completion results"],
|
|
88
|
-
});
|
|
89
|
-
continue;
|
|
90
|
-
}
|
|
91
|
-
const [result] = matching;
|
|
92
|
-
if (result === undefined) {
|
|
93
|
-
incomplete.push({
|
|
94
|
-
agentKey: entry.agentKey,
|
|
95
|
-
targetPath: entry.targetPath,
|
|
96
|
-
status: "failed",
|
|
97
|
-
notes: ["missing completion result"],
|
|
98
|
-
});
|
|
43
|
+
if (skippedAgentKeys.has(entry.agentKey)) {
|
|
44
|
+
skipped.push(entry.targetPath);
|
|
99
45
|
continue;
|
|
100
46
|
}
|
|
101
|
-
|
|
102
|
-
|
|
47
|
+
const existedBefore = existingBefore.has(entry.targetPath);
|
|
48
|
+
const existsAfter = existingAfter.has(entry.targetPath);
|
|
49
|
+
if (existsAfter) {
|
|
50
|
+
if (existedBefore) {
|
|
51
|
+
refreshed.push(entry.targetPath);
|
|
52
|
+
}
|
|
53
|
+
else {
|
|
54
|
+
created.push(entry.targetPath);
|
|
55
|
+
}
|
|
103
56
|
continue;
|
|
104
57
|
}
|
|
105
|
-
|
|
58
|
+
failed.push(entry.targetPath);
|
|
106
59
|
}
|
|
107
|
-
return {
|
|
108
|
-
completed,
|
|
109
|
-
incomplete,
|
|
110
|
-
canRunInitDeep: incomplete.length === 0 && completed.length === plan.entries.length,
|
|
111
|
-
};
|
|
60
|
+
return { created, refreshed, skipped, failed };
|
|
112
61
|
}
|
|
113
62
|
//# sourceMappingURL=docs-index-plan.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"docs-index-plan.js","sourceRoot":"","sources":["../../src/agents/docs-index-plan.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,wBAAwB,EAAE,MAAM,kBAAkB,CAAA;AAC9E,OAAO,EAAE,2BAA2B,EAAE,MAAM,8BAA8B,CAAA;
|
|
1
|
+
{"version":3,"file":"docs-index-plan.js","sourceRoot":"","sources":["../../src/agents/docs-index-plan.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AAMjD,QAAA,MAAM,gBAAgB,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AAMjD,QAAA,MAAM,gBAAgB,EAAE,MAyFvB,CAAA;AAED,OAAO,EAAE,gBAAgB,IAAI,OAAO,EAAE,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -23,6 +23,8 @@ Documentation output is enabled for this project. Use these resolved runtime val
|
|
|
23
23
|
- docHistoryMode: ${docHistoryMode}
|
|
24
24
|
- docs scope: current project root only
|
|
25
25
|
|
|
26
|
+
Treat these canonical targets as managed home files. Within \`/docs-index\`, use a refresh or bootstrap flow: refresh them if present or bootstrap them if missing.
|
|
27
|
+
|
|
26
28
|
Eligible Wunderkind docs targets:
|
|
27
29
|
${docsTargets}
|
|
28
30
|
`.trim());
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAC3D,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAA;AAEpE,MAAM,oBAAoB,GAAG,uCAAuC,CAAA;AAEpE,MAAM,gBAAgB,GAAW,KAAK,EAAE,MAAM,EAAE,EAAE;IAChD,OAAO;QACL,oCAAoC,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE;YAC7D,MAAM,gBAAgB,GAAG,oBAAoB,EAAE,CAAA;YAC/C,MAAM,qBAAqB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,oBAAoB,CAAC,CAAA;YAEnF,IAAI,gBAAgB,EAAE,WAAW,KAAK,IAAI,IAAI,CAAC,qBAAqB,EAAE,CAAC;gBACrE,MAAM,QAAQ,GAAG,gBAAgB,CAAC,QAAQ,IAAI,QAAQ,CAAA;gBACtD,MAAM,cAAc,GAAG,gBAAgB,CAAC,cAAc,IAAI,WAAW,CAAA;gBACrE,MAAM,WAAW,GAAG,MAAM,CAAC,OAAO,CAAC,iBAAiB,CAAC;qBAClD,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC;qBACvC,GAAG,CAAC,CAAC,CAAC,QAAQ,EAAE,MAAM,CAAC,EAAE,EAAE,CAAC,KAAK,QAAQ,KAAK,QAAQ,IAAI,MAAM,CAAC,iBAAiB,EAAE,CAAC;qBACrF,IAAI,CAAC,IAAI,CAAC,CAAA;gBAEb,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC;EACzB,oBAAoB;;;;;cAKR,QAAQ;oBACF,cAAc
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAC3D,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAA;AAEpE,MAAM,oBAAoB,GAAG,uCAAuC,CAAA;AAEpE,MAAM,gBAAgB,GAAW,KAAK,EAAE,MAAM,EAAE,EAAE;IAChD,OAAO;QACL,oCAAoC,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE;YAC7D,MAAM,gBAAgB,GAAG,oBAAoB,EAAE,CAAA;YAC/C,MAAM,qBAAqB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,oBAAoB,CAAC,CAAA;YAEnF,IAAI,gBAAgB,EAAE,WAAW,KAAK,IAAI,IAAI,CAAC,qBAAqB,EAAE,CAAC;gBACrE,MAAM,QAAQ,GAAG,gBAAgB,CAAC,QAAQ,IAAI,QAAQ,CAAA;gBACtD,MAAM,cAAc,GAAG,gBAAgB,CAAC,cAAc,IAAI,WAAW,CAAA;gBACrE,MAAM,WAAW,GAAG,MAAM,CAAC,OAAO,CAAC,iBAAiB,CAAC;qBAClD,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC;qBACvC,GAAG,CAAC,CAAC,CAAC,QAAQ,EAAE,MAAM,CAAC,EAAE,EAAE,CAAC,KAAK,QAAQ,KAAK,QAAQ,IAAI,MAAM,CAAC,iBAAiB,EAAE,CAAC;qBACrF,IAAI,CAAC,IAAI,CAAC,CAAA;gBAEb,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC;EACzB,oBAAoB;;;;;cAKR,QAAQ;oBACF,cAAc;;;;;;EAMhC,WAAW;CACZ,CAAC,IAAI,EAAE,CAAC,CAAA;YACH,CAAC;YAED,IAAI,gBAAgB,EAAE,CAAC;gBACrB,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC;;;;;YAKf,gBAAgB,CAAC,MAAM,IAAI,QAAQ;cACjC,CAAC,gBAAgB,CAAC,QAAQ,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC,WAAW;wBAC/E,gBAAgB,CAAC,iBAAiB,IAAI,MAAM;0BAC1C,CAAC,gBAAgB,CAAC,mBAAmB,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,gBAAgB,CAAC,mBAAmB,CAAC,CAAC,CAAC,WAAW;kBACvH,gBAAgB,CAAC,WAAW,IAAI,oBAAoB;mBACnD,gBAAgB,CAAC,YAAY,IAAI,MAAM;;;CAGzD,CAAC,IAAI,EAAE,CAAC,CAAA;YACH,CAAC;YAED,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsCxB,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAA;QAC9B,CAAC;KACF,CAAA;AACH,CAAC,CAAA;AAED,OAAO,EAAE,gBAAgB,IAAI,OAAO,EAAE,CAAA"}
|
package/package.json
CHANGED