@paradigma-inc/flywheel 0.1.85 → 0.1.88
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/package.json +1 -1
- package/skills/flywheel/references/flywheel-cli-tool-map.md +1 -1
- package/skills/flywheel-auto/references/flywheel-cli-tool-map.md +1 -1
- package/skills/flywheel-lookahead/references/flywheel-cli-tool-map.md +1 -1
- package/skills/flywheel-reproduce/references/flywheel-cli-tool-map.md +1 -1
- package/skills/flywheel-to-graph/SKILL.md +38 -3
- package/skills/flywheel-to-graph/agents/openai.yaml +1 -1
- package/skills/flywheel-to-graph/evals/evals.json +21 -3
- package/skills/flywheel-to-graph/references/flywheel-cli-tool-map.md +1 -1
- package/skills/flywheel-to-graph/references/source-blog.md +5 -3
- package/skills/flywheel-to-graph/references/source-generic.md +3 -3
- package/skills/flywheel-to-graph/references/source-notes.md +3 -2
- package/skills/flywheel-to-graph/references/source-paper.md +9 -3
- package/skills/flywheel-to-graph/references/source-wiki.md +4 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-get.js +15 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-get.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/graph.js +14 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/graph.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/http/client.d.ts +2 -1
- package/src/runtime/vendor/flywheel-cli-dist/http/client.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/client.js.map +1 -1
- package/src/runtime/vendor/manifest.json +1 -1
package/package.json
CHANGED
|
@@ -145,7 +145,7 @@ These commands have no MCP counterpart. They cover auth/profile management, acco
|
|
|
145
145
|
|
|
146
146
|
- `flywheel blobs:get` (read; scopes: `read`): Download a raw blob by storage key.
|
|
147
147
|
- `flywheel files:list` (read; scopes: `read`): List all your files across nodes.
|
|
148
|
-
- `flywheel graph:get` (read; scopes: `read`): Read the graph projection for navigation and topology workflows.
|
|
148
|
+
- `flywheel graph:get` (read; scopes: `read`): Read the graph projection for navigation and topology workflows. Use `--filter` and `--exclude` for node filter tokens across owner, root_graph, tag, visibility, and recency axes; `node_type` is not a supported axis.
|
|
149
149
|
- `flywheel export:history` (read; scopes: `read`): Export node history as JSONL.
|
|
150
150
|
|
|
151
151
|
### Account
|
|
@@ -142,7 +142,7 @@ These commands have no MCP counterpart. They cover auth/profile management, acco
|
|
|
142
142
|
|
|
143
143
|
- `flywheel blobs:get` (read; scopes: `read`): Download a raw blob by storage key.
|
|
144
144
|
- `flywheel files:list` (read; scopes: `read`): List all your files across nodes.
|
|
145
|
-
- `flywheel graph:get` (read; scopes: `read`): Read the graph projection for navigation and topology workflows.
|
|
145
|
+
- `flywheel graph:get` (read; scopes: `read`): Read the graph projection for navigation and topology workflows. Use `--filter` and `--exclude` for node filter tokens across owner, root_graph, tag, visibility, and recency axes; `node_type` is not a supported axis.
|
|
146
146
|
- `flywheel export:history` (read; scopes: `read`): Export node history as JSONL.
|
|
147
147
|
|
|
148
148
|
### Account
|
|
@@ -142,7 +142,7 @@ These commands have no MCP counterpart. They cover auth/profile management, acco
|
|
|
142
142
|
|
|
143
143
|
- `flywheel blobs:get` (read; scopes: `read`): Download a raw blob by storage key.
|
|
144
144
|
- `flywheel files:list` (read; scopes: `read`): List all your files across nodes.
|
|
145
|
-
- `flywheel graph:get` (read; scopes: `read`): Read the graph projection for navigation and topology workflows.
|
|
145
|
+
- `flywheel graph:get` (read; scopes: `read`): Read the graph projection for navigation and topology workflows. Use `--filter` and `--exclude` for node filter tokens across owner, root_graph, tag, visibility, and recency axes; `node_type` is not a supported axis.
|
|
146
146
|
- `flywheel export:history` (read; scopes: `read`): Export node history as JSONL.
|
|
147
147
|
|
|
148
148
|
### Account
|
|
@@ -142,7 +142,7 @@ These commands have no MCP counterpart. They cover auth/profile management, acco
|
|
|
142
142
|
|
|
143
143
|
- `flywheel blobs:get` (read; scopes: `read`): Download a raw blob by storage key.
|
|
144
144
|
- `flywheel files:list` (read; scopes: `read`): List all your files across nodes.
|
|
145
|
-
- `flywheel graph:get` (read; scopes: `read`): Read the graph projection for navigation and topology workflows.
|
|
145
|
+
- `flywheel graph:get` (read; scopes: `read`): Read the graph projection for navigation and topology workflows. Use `--filter` and `--exclude` for node filter tokens across owner, root_graph, tag, visibility, and recency axes; `node_type` is not a supported axis.
|
|
146
146
|
- `flywheel export:history` (read; scopes: `read`): Export node history as JSONL.
|
|
147
147
|
|
|
148
148
|
### Account
|
|
@@ -39,17 +39,39 @@ Before authoring, recover or establish these inputs:
|
|
|
39
39
|
- `normalized Flywheel graph export`: already-structured Flywheel node JSON with DAG-safe edges, suitable for `flywheel_import_subgraph`.
|
|
40
40
|
- `durable edge`: a graph relationship that carries stable semantic meaning, not just a navigational hyperlink.
|
|
41
41
|
- `authoring pass`: one pass that reads source material and stages or commits the corresponding node/artifact updates.
|
|
42
|
+
- `graph-native import`: an import that preserves the source's substantive ideas, procedures, evidence, and durable relationships in a graph-friendly form, without needing to mirror the original prose order, headings, or layout.
|
|
42
43
|
- `expected_revision`: the node's current revision token used for optimistic-locking writes.
|
|
43
44
|
|
|
44
45
|
## Core Rules
|
|
45
46
|
|
|
46
47
|
- Prefer explicit Flywheel node and artifact operations over ad hoc bulk-import stories, because node-first authoring keeps the graph legible and auditable.
|
|
47
48
|
- Treat the main page body as the node readme/body field (`content` on modern Flywheel surfaces).
|
|
49
|
+
- Favor graph-native imports over format-mirroring summaries, because the graph should preserve the source's logic and concepts rather than its table of contents.
|
|
50
|
+
- Use source headings, file boundaries, page order, and layout as hints, not obligations.
|
|
51
|
+
- Prefer nodes for stable concepts, claims, entities, procedures, datasets, baselines, results, comparisons, decisions, and dependencies, because those survive format changes better than section labels.
|
|
52
|
+
- If a page or section is too dense for one node to remain legible and information-complete, split it into more nodes rather than dropping detail.
|
|
53
|
+
- Preserve reusable specifics in node `content`, such as definitions, assumptions, procedures, commands, equations, parameters, datasets, metrics, results, examples, and caveats when present in the source.
|
|
54
|
+
- Default to paraphrased or synthesized node content. Preserve verbatim wording only when exact phrasing is itself important, such as commands, equations, error strings, definitions, prompts, contractual language, or exact claims.
|
|
48
55
|
- Use artifacts for supporting files and evidence, not as a substitute for the node's main narrative, because the node body should remain the readable source-of-truth for the imported material.
|
|
49
56
|
- Only create graph edges for durable semantic relationships, because graphifying every wiki link floods the graph with noise that hides decision-relevant structure.
|
|
50
57
|
- Use `flywheel_import_subgraph` only for prebuilt Flywheel graph JSON, not for raw markdown repositories, because raw corpora are usually file-centric and cyclic rather than clean node-centric payloads.
|
|
51
58
|
- Treat the flywheel-to-graph skill as source-to-graph authoring only. It ports material into Flywheel primitives but does not execute branches or spend budget implicitly, because that changes the job into `$flywheel-reproduce` or `$flywheel-auto`.
|
|
52
59
|
|
|
60
|
+
## Concept-First Standard
|
|
61
|
+
|
|
62
|
+
Graphify the source so a reader or model can recover the material's ideas and durable relationships from the graph, even if the graph no longer mirrors the source's original order, headings, or prose.
|
|
63
|
+
|
|
64
|
+
This means:
|
|
65
|
+
|
|
66
|
+
- Organize around concepts, claims, procedures, entities, results, comparisons, and dependencies.
|
|
67
|
+
- Keep actual substance, not just headings or section labels.
|
|
68
|
+
- Preserve key facts, procedures, evidence, caveats, and examples.
|
|
69
|
+
- Increase node granularity when needed instead of compressing dense sections into shallow blurbs.
|
|
70
|
+
- Paraphrase and synthesize by default instead of repeating source wording verbatim.
|
|
71
|
+
- Keep exact wording only when the wording itself matters.
|
|
72
|
+
- Let the graph diverge from the source format when that produces a clearer conceptual structure.
|
|
73
|
+
- Use artifacts to keep the raw original and bulky supporting material, but do not rely on artifacts alone for essential explanation.
|
|
74
|
+
|
|
53
75
|
## Workflow
|
|
54
76
|
|
|
55
77
|
1. Resolve the starting context.
|
|
@@ -61,10 +83,18 @@ Before authoring, recover or establish these inputs:
|
|
|
61
83
|
- Complete source routing before step 3 node mapping.
|
|
62
84
|
3. Map each stable page, claim, or concept to a node.
|
|
63
85
|
- For exact node-mutation shapes, load [references/flywheel-mcp-tool-map.md](references/flywheel-mcp-tool-map.md).
|
|
86
|
+
- Choose node boundaries by conceptual cohesion and durable relationships first, then use file or heading boundaries as secondary hints.
|
|
64
87
|
- Create a new node with `flywheel_commit_new_node` (MCP) or `flywheel nodes:commit-new` (CLI) when needed.
|
|
65
88
|
- Update an existing node with `flywheel_get_node` + `flywheel_acquire_stage_lease` + `flywheel_commit_node` (MCP) or `flywheel nodes:get` + `flywheel nodes:stage:lease:acquire` + `flywheel nodes:commit` (CLI) when continuing work.
|
|
66
|
-
|
|
67
|
-
-
|
|
89
|
+
- If the source layout hides the real structure, regroup material into concept, procedure, claim, dataset, baseline, result, comparison, decision, or dependency nodes.
|
|
90
|
+
- If a section would become a shallow stub, split it into more graph-native nodes until the imported graph preserves the underlying logic.
|
|
91
|
+
4. Put a graph-native narrative in the node body/readme field (`content`).
|
|
92
|
+
- Write `content` so another reader or model can recover the unit's meaning and role in the graph without needing the original prose order.
|
|
93
|
+
- Put claims, rationale, methods, outcomes, continuation notes, and source-supported caveats in `content`; keep `summary` concise.
|
|
94
|
+
- Populate `hypothesis`, `insights`, `outcome`, and similar fields only when the source actually supports them.
|
|
95
|
+
- Preserve definitions, procedures, arguments, commands, equations, configs, datasets, metrics, results, examples, and caveats when present.
|
|
96
|
+
- Prefer paraphrase and synthesis over copy-paste transcription.
|
|
97
|
+
- Do not stop at "this section describes X"; include what X actually says and how it connects to neighboring nodes.
|
|
68
98
|
5. Publish supporting files with the artifact upload flow.
|
|
69
99
|
- For exact artifact contract details, load [references/ARTIFACTS.md](references/ARTIFACTS.md).
|
|
70
100
|
- Use `flywheel_prepare_artifact_uploads` (MCP) or `flywheel artifacts:upload:prepare` (CLI).
|
|
@@ -73,6 +103,7 @@ Before authoring, recover or establish these inputs:
|
|
|
73
103
|
- Keep the artifact filename stable enough to reference from markdown when inline rendering matters.
|
|
74
104
|
6. Add graph structure sparingly.
|
|
75
105
|
- Promote only durable semantic relationships to edges.
|
|
106
|
+
- Prefer relationships such as defines, depends-on, compares-with, evaluates, produces, supports, contradicts, decomposes-into, or derived-from when the source supports them.
|
|
76
107
|
- Leave ordinary cross-links inside the markdown body.
|
|
77
108
|
7. Commit after the node snapshot is coherent with `flywheel_commit_node` (MCP) or `flywheel nodes:commit` (CLI).
|
|
78
109
|
- Commit once the source narrative, artifact attachments, and selected graph structure agree with each other.
|
|
@@ -82,7 +113,8 @@ Before authoring, recover or establish these inputs:
|
|
|
82
113
|
When the skill completes a pass, it should leave behind:
|
|
83
114
|
|
|
84
115
|
- A root node or subtree that represents the source material in Flywheel.
|
|
85
|
-
- The primary narrative preserved in node `content`.
|
|
116
|
+
- The primary narrative preserved in graph-native node `content`.
|
|
117
|
+
- The imported graph organized around the material's conceptual and logical structure, even when that differs from the source's original format or prose order.
|
|
86
118
|
- Supporting files attached as artifacts where appropriate.
|
|
87
119
|
- Only durable graph edges added to the graph.
|
|
88
120
|
- No hidden execution, no compute approval, and no managed compute acquisition.
|
|
@@ -198,6 +230,9 @@ Guidelines:
|
|
|
198
230
|
- Do not hide spend behind the flywheel-to-graph skill.
|
|
199
231
|
- Build the graph explicitly with nodes, artifacts, and selected edges.
|
|
200
232
|
- Keep the source material legible in `content`; do not dump everything into artifacts.
|
|
233
|
+
- Do not mirror the source's table of contents, file tree, or presentation order mechanically when a concept-first graph is clearer.
|
|
234
|
+
- Do not turn source-to-graph import into verbatim transcription; paraphrase unless exact wording matters.
|
|
235
|
+
- Do not confuse graphifying the source with empirically validating it: preserve enough detail for later reuse, but do not execute or test claims inside `$flywheel-to-graph`.
|
|
201
236
|
- These source-to-graph authoring-only rules apply only when $flywheel-to-graph is the active skill.
|
|
202
237
|
|
|
203
238
|
See also: invoke `$flywheel-reproduce` to graphify claim-bearing sources and run budgeted validation branches, invoke `$flywheel-lookahead` to stage next-step frontier nodes from existing graph state without execution, and invoke `$flywheel-auto` to advance a frontier autonomously under an explicit budget and persisted stop condition.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
interface:
|
|
2
2
|
display_name: "flywheel-to-graph"
|
|
3
3
|
short_description: "Turn source material into a Flywheel graph"
|
|
4
|
-
default_prompt: "Use $flywheel-to-graph to turn this source corpus into Flywheel
|
|
4
|
+
default_prompt: "Use $flywheel-to-graph to turn this source corpus into a concept-first Flywheel graph that preserves the logical structure and relationships without mirroring the source layout verbatim."
|
|
5
5
|
|
|
6
6
|
dependencies:
|
|
7
7
|
tools:
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
{
|
|
3
3
|
"id": "markdown-wiki-corpus-ports-explicitly",
|
|
4
4
|
"prompt": "Use $flywheel-to-graph to turn this markdown wiki corpus into a Flywheel graph. Preserve the main narrative in nodes, attach supporting files as artifacts, and do not invent a separate importer surface.",
|
|
5
|
-
"expected_output": "Port the corpus with explicit node and artifact authoring, keep the main narrative in node `content`, add only durable graph edges, and avoid hidden execution or compute spend.",
|
|
5
|
+
"expected_output": "Port the corpus with explicit node and artifact authoring, keep the main narrative in graph-native node `content`, regroup dense pages around concepts or procedures when useful instead of producing heading-only summaries, add only durable graph edges, and avoid hidden execution or compute spend.",
|
|
6
6
|
"files": []
|
|
7
7
|
},
|
|
8
8
|
{
|
|
@@ -14,13 +14,31 @@
|
|
|
14
14
|
{
|
|
15
15
|
"id": "claim-bearing-paper-without-execution",
|
|
16
16
|
"prompt": "Use $flywheel-to-graph to structure this claim-bearing paper into Flywheel nodes and artifacts, but do not run any validation branches yet.",
|
|
17
|
-
"expected_output": "Create a parent paper node under the requested root, decompose the paper into
|
|
17
|
+
"expected_output": "Create a parent paper node under the requested root, decompose the paper into graph-native child nodes that preserve the paper's methods, datasets, metrics, results, and dependencies, paraphrase the paper's substance instead of copying section prose verbatim, attach the PDF to the parent node, and avoid hidden execution or compute acquisition. Do NOT produce a single `insight` node with the PDF as the only artifact.",
|
|
18
18
|
"files": []
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
21
|
"id": "paper-pdf-decomposes-into-section-children",
|
|
22
22
|
"prompt": "Use $flywheel-to-graph on the paper PDF in the current folder and attach the result under an existing root node.",
|
|
23
|
-
"expected_output": "Create a parent paper node under the root,
|
|
23
|
+
"expected_output": "Create a parent paper node under the root, use top-level sections only as an initial scaffold, deepen or regroup dense material when needed, place graph-native technical detail in child `content`, and attach the PDF artifact on the parent. Do NOT emit a single `insight` node with only a summary and the PDF artifact.",
|
|
24
|
+
"files": []
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"id": "technical-blog-preserves-commands-and-config",
|
|
28
|
+
"prompt": "Use $flywheel-to-graph to import this long technical blog post about setting up a distributed training stack. Preserve enough detail that someone reading Flywheel could rebuild the setup without reopening the post.",
|
|
29
|
+
"expected_output": "Create article and procedure or decision nodes as needed, keep commands, config, prerequisites, failure modes, and caveats in graph-native node `content`, attach supporting assets when present, and do not reduce the post to heading-level summaries or copy blog prose verbatim.",
|
|
30
|
+
"files": []
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "methods-heavy-paper-does-not-collapse-to-stubs",
|
|
34
|
+
"prompt": "Use $flywheel-to-graph on this methods-heavy paper PDF. The resulting graph should preserve enough technical detail to reconstruct the paper's approach and evaluation later.",
|
|
35
|
+
"expected_output": "Decompose dense Methods and Experiments material beyond a shallow outline when necessary, preserve procedures, datasets, baselines, metrics, ablations, and key results in graph-native node `content`, attach the PDF to the parent, and avoid short section stubs that only describe what each section is about.",
|
|
36
|
+
"files": []
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "presentation-order-does-not-govern-graph-shape",
|
|
40
|
+
"prompt": "Use $flywheel-to-graph to import this source whose headings follow meeting chronology, but the actual substance is a set of decisions, dependencies, and open questions. Render it as a useful Flywheel graph.",
|
|
41
|
+
"expected_output": "Treat the source order as a hint rather than a template, regroup the material into decision, dependency, and open-question nodes, paraphrase the content into graph-native summaries, and add durable edges that expose the logical structure instead of mirroring the chronology.",
|
|
24
42
|
"files": []
|
|
25
43
|
}
|
|
26
44
|
]
|
|
@@ -142,7 +142,7 @@ These commands have no MCP counterpart. They cover auth/profile management, acco
|
|
|
142
142
|
|
|
143
143
|
- `flywheel blobs:get` (read; scopes: `read`): Download a raw blob by storage key.
|
|
144
144
|
- `flywheel files:list` (read; scopes: `read`): List all your files across nodes.
|
|
145
|
-
- `flywheel graph:get` (read; scopes: `read`): Read the graph projection for navigation and topology workflows.
|
|
145
|
+
- `flywheel graph:get` (read; scopes: `read`): Read the graph projection for navigation and topology workflows. Use `--filter` and `--exclude` for node filter tokens across owner, root_graph, tag, visibility, and recency axes; `node_type` is not a supported axis.
|
|
146
146
|
- `flywheel export:history` (read; scopes: `read`): Export node history as JSONL.
|
|
147
147
|
|
|
148
148
|
### Account
|
|
@@ -13,12 +13,14 @@ Match this reference for sources from common blog/article domains or article-lik
|
|
|
13
13
|
|
|
14
14
|
## Decomposition
|
|
15
15
|
|
|
16
|
-
- Short posts: one node is acceptable.
|
|
17
|
-
- Long posts: parent article node plus
|
|
16
|
+
- Short posts: one node is acceptable only if that node still preserves the post's concrete substance.
|
|
17
|
+
- Long or technical posts: parent article node plus concept, procedure, API-surface, decision, or comparison children around the post's logical flow, not just its heading structure.
|
|
18
18
|
|
|
19
19
|
## Content and Artifacts
|
|
20
20
|
|
|
21
|
-
- Article narrative in
|
|
21
|
+
- Article narrative in graph-native `content`.
|
|
22
|
+
- Preserve concrete commands, code patterns, config, API shapes, examples, warnings, and caveats when present.
|
|
23
|
+
- Paraphrase the post's substance rather than copying blog prose, except where exact snippets matter.
|
|
22
24
|
- Summary in `summary`.
|
|
23
25
|
- Supporting media files as artifacts when available.
|
|
24
26
|
|
|
@@ -13,12 +13,12 @@ Activate this reference only after deterministic and natural-language routing fa
|
|
|
13
13
|
|
|
14
14
|
## Decomposition
|
|
15
15
|
|
|
16
|
-
- If top-level headings are available,
|
|
17
|
-
- If no structural cues are available, create
|
|
16
|
+
- If top-level headings are available, use them as hints, then regroup into concept, procedure, claim, result, comparison, or decision nodes as needed.
|
|
17
|
+
- If no structural cues are available, create thematic child nodes whenever possible instead of forcing one monolithic node.
|
|
18
18
|
|
|
19
19
|
## Content and Artifacts
|
|
20
20
|
|
|
21
|
-
- Keep extracted narrative in `content
|
|
21
|
+
- Keep extracted narrative in graph-native `content`, paraphrased unless exact wording matters.
|
|
22
22
|
- Attach supporting files as artifacts.
|
|
23
23
|
|
|
24
24
|
## Failure Behavior
|
|
@@ -14,11 +14,12 @@ Match this reference when source is a local notes corpus with many small markdow
|
|
|
14
14
|
## Decomposition
|
|
15
15
|
|
|
16
16
|
- Default: one note file -> one node.
|
|
17
|
-
- Large note files:
|
|
17
|
+
- Large or detail-dense note files: cluster into decision, task, procedure, concept, or open-question nodes rather than following headings mechanically.
|
|
18
18
|
|
|
19
19
|
## Content and Artifacts
|
|
20
20
|
|
|
21
|
-
-
|
|
21
|
+
- Preserve concrete operational detail in graph-native `content`, including commands, paths, parameters, decision rationale, open questions, and TODO state when present.
|
|
22
|
+
- Prefer synthesis over raw note-dump copying when multiple notes express the same idea or workflow.
|
|
22
23
|
- Concise note synopsis in `summary`.
|
|
23
24
|
- Embedded local files become artifacts when relevant.
|
|
24
25
|
|
|
@@ -51,15 +51,20 @@ Do not use naive `section` selectors without class filtering.
|
|
|
51
51
|
Default shape:
|
|
52
52
|
|
|
53
53
|
- Create one parent paper node under the requested root.
|
|
54
|
-
- Create one child node per detected top-level paper section.
|
|
54
|
+
- Create one child node per detected top-level paper section only as a starting scaffold.
|
|
55
|
+
- If the paper's real structure is better captured by techniques, datasets, baselines, metrics, ablations, claims, or results, create those nodes even when they cut across the original section layout.
|
|
56
|
+
- If a top-level section is long or technically dense, add subsection or concept children until each node can hold graph-native content without collapsing into outline bullets.
|
|
55
57
|
- Typical section set includes Abstract, Introduction, Methods, Results, Discussion, Conclusion, and Related Work when present.
|
|
56
58
|
|
|
57
59
|
## Content Placement Contract
|
|
58
60
|
|
|
59
61
|
- Parent title: paper title.
|
|
60
62
|
- Parent summary: abstract or concise abstract-derived synopsis.
|
|
61
|
-
- Parent content: one-paragraph orientation plus links/references to
|
|
62
|
-
- Child content:
|
|
63
|
+
- Parent content: one-paragraph orientation to the paper's problem, approach, and main findings plus links/references to important child nodes.
|
|
64
|
+
- Child content: paraphrased technical substance for that unit, with enough detail to preserve the paper's problem framing, method, datasets, metrics, results, limitations, and key equations or procedures where present.
|
|
65
|
+
- Prefer concept-first paraphrase over paper-like prose restatement.
|
|
66
|
+
- Do not reduce Methods, Experiments, Results, or Appendices to short descriptive blurbs when the paper contains actionable technical detail there.
|
|
67
|
+
- Do not assume paper section names are the best final graph shape when regrouping by method component or evaluation logic is clearer.
|
|
63
68
|
|
|
64
69
|
## Artifact Contract
|
|
65
70
|
|
|
@@ -81,5 +86,6 @@ Default shape:
|
|
|
81
86
|
- If acquisition fails, return explicit failure with the failing source variant and stop.
|
|
82
87
|
- If all parsers fail, return explicit failure and stop.
|
|
83
88
|
- Do not silently degrade to one summary node plus artifact-only output.
|
|
89
|
+
- Do not silently collapse a technically dense paper into thin section stubs that cannot preserve the original argument, method, or evidence chain.
|
|
84
90
|
|
|
85
91
|
These rules apply only when `$flywheel-to-graph` is the active skill.
|
|
@@ -14,11 +14,13 @@ Match this reference when source material is wiki-like markdown content with mul
|
|
|
14
14
|
## Decomposition
|
|
15
15
|
|
|
16
16
|
- One stable page or concept maps to one node by default.
|
|
17
|
-
- Large pages
|
|
17
|
+
- Large or operationally dense pages should split by concept, subsystem, procedure, policy, or contract boundary when that better captures the material than the page layout does.
|
|
18
|
+
- A wiki page is an anchor for discovery, not a mandatory final graph boundary.
|
|
18
19
|
|
|
19
20
|
## Content and Artifacts
|
|
20
21
|
|
|
21
|
-
- Main narrative goes into node `content
|
|
22
|
+
- Main narrative goes into graph-native node `content`, including definitions, procedures, commands, configs, examples, and policy or contract detail when present.
|
|
23
|
+
- Paraphrase and reorganize when needed so the graph exposes the underlying system structure rather than the wiki's navigation structure.
|
|
22
24
|
- Short synopsis goes into `summary`.
|
|
23
25
|
- Supporting files (images, PDFs, data files, notebooks) are node artifacts.
|
|
24
26
|
|
|
@@ -1,10 +1,21 @@
|
|
|
1
1
|
import { optionalInt, optionalString } from './utils.js';
|
|
2
|
+
function optionalList(raw) {
|
|
3
|
+
if (!raw)
|
|
4
|
+
return undefined;
|
|
5
|
+
const values = raw
|
|
6
|
+
.split(',')
|
|
7
|
+
.map((value) => value.trim())
|
|
8
|
+
.filter(Boolean);
|
|
9
|
+
return values.length ? values : undefined;
|
|
10
|
+
}
|
|
2
11
|
export const graphGetCommand = async (context) => {
|
|
3
12
|
const nodeId = optionalString(context.params, 'node_id');
|
|
4
13
|
const depth = optionalInt(context.params, 'depth');
|
|
5
14
|
const maxNodes = optionalInt(context.params, 'max_nodes');
|
|
6
15
|
const pageSize = optionalInt(context.params, 'page_size');
|
|
7
16
|
const cursor = optionalString(context.params, 'cursor');
|
|
17
|
+
const filters = optionalList(optionalString(context.params, 'filter'));
|
|
18
|
+
const exclude = optionalList(optionalString(context.params, 'exclude'));
|
|
8
19
|
const query = {};
|
|
9
20
|
if (nodeId)
|
|
10
21
|
query.node_id = nodeId;
|
|
@@ -16,6 +27,10 @@ export const graphGetCommand = async (context) => {
|
|
|
16
27
|
query.page_size = pageSize;
|
|
17
28
|
if (cursor)
|
|
18
29
|
query.cursor = cursor;
|
|
30
|
+
if (filters)
|
|
31
|
+
query.filter = filters;
|
|
32
|
+
if (exclude)
|
|
33
|
+
query.exclude = exclude;
|
|
19
34
|
return context.requestJson('GET', '/graph', Object.keys(query).length ? { query } : undefined);
|
|
20
35
|
};
|
|
21
36
|
//# sourceMappingURL=graph-get.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graph-get.js","sourceRoot":"","sources":["../../src/commands/graph-get.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAEzD,MAAM,CAAC,MAAM,eAAe,GAAmB,KAAK,EAAE,OAAO,EAAE,EAAE;IAC/D,MAAM,MAAM,GAAG,cAAc,CAAC,OAAO,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;IACzD,MAAM,KAAK,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACnD,MAAM,QAAQ,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;IAC1D,MAAM,QAAQ,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;IAC1D,MAAM,MAAM,GAAG,cAAc,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;IACxD,MAAM,KAAK,
|
|
1
|
+
{"version":3,"file":"graph-get.js","sourceRoot":"","sources":["../../src/commands/graph-get.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAEzD,SAAS,YAAY,CAAC,GAAuB;IAC3C,IAAI,CAAC,GAAG;QAAE,OAAO,SAAS,CAAC;IAC3B,MAAM,MAAM,GAAG,GAAG;SACf,KAAK,CAAC,GAAG,CAAC;SACV,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC;SAC5B,MAAM,CAAC,OAAO,CAAC,CAAC;IACnB,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;AAC5C,CAAC;AAED,MAAM,CAAC,MAAM,eAAe,GAAmB,KAAK,EAAE,OAAO,EAAE,EAAE;IAC/D,MAAM,MAAM,GAAG,cAAc,CAAC,OAAO,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;IACzD,MAAM,KAAK,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACnD,MAAM,QAAQ,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;IAC1D,MAAM,QAAQ,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;IAC1D,MAAM,MAAM,GAAG,cAAc,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;IACxD,MAAM,OAAO,GAAG,YAAY,CAAC,cAAc,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAC;IACvE,MAAM,OAAO,GAAG,YAAY,CAAC,cAAc,CAAC,OAAO,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,CAAC;IACxE,MAAM,KAAK,GAAyD,EAAE,CAAC;IACvE,IAAI,MAAM;QAAE,KAAK,CAAC,OAAO,GAAG,MAAM,CAAC;IACnC,IAAI,KAAK,KAAK,SAAS;QAAE,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC;IAC7C,IAAI,QAAQ,KAAK,SAAS;QAAE,KAAK,CAAC,SAAS,GAAG,QAAQ,CAAC;IACvD,IAAI,QAAQ,KAAK,SAAS;QAAE,KAAK,CAAC,SAAS,GAAG,QAAQ,CAAC;IACvD,IAAI,MAAM;QAAE,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;IAClC,IAAI,OAAO;QAAE,KAAK,CAAC,MAAM,GAAG,OAAO,CAAC;IACpC,IAAI,OAAO;QAAE,KAAK,CAAC,OAAO,GAAG,OAAO,CAAC;IACrC,OAAO,OAAO,CAAC,WAAW,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;AACjG,CAAC,CAAC"}
|
|
@@ -11,6 +11,16 @@ export const GRAPH_COMMANDS = [
|
|
|
11
11
|
{ name: 'max_nodes', type: 'integer', description: 'Max nodes in response.' },
|
|
12
12
|
{ name: 'page_size', type: 'integer', description: 'Graph page size.' },
|
|
13
13
|
{ name: 'cursor', type: 'string', description: 'Cursor returned by the previous graph page.' },
|
|
14
|
+
{
|
|
15
|
+
name: 'filter',
|
|
16
|
+
type: 'string',
|
|
17
|
+
description: 'Comma-separated node filter tokens, e.g. include:tag:tag-priority. Axes: owner, root_graph, tag, visibility, recency.',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
name: 'exclude',
|
|
21
|
+
type: 'string',
|
|
22
|
+
description: 'Comma-separated exclude shorthand tokens, e.g. owner:<user_uuid>. Axes: owner, root_graph, tag, visibility, recency.',
|
|
23
|
+
},
|
|
14
24
|
],
|
|
15
25
|
examples: [
|
|
16
26
|
{
|
|
@@ -25,6 +35,10 @@ export const GRAPH_COMMANDS = [
|
|
|
25
35
|
description: 'Read the next graph page.',
|
|
26
36
|
invocation: 'flywheel graph:get --page_size 10000 --cursor <next_cursor>',
|
|
27
37
|
},
|
|
38
|
+
{
|
|
39
|
+
description: 'Read a filtered graph page.',
|
|
40
|
+
invocation: 'flywheel graph:get --filter include:tag:tag-priority --exclude owner:<user_uuid>',
|
|
41
|
+
},
|
|
28
42
|
],
|
|
29
43
|
related: ['nodes:render:tree'],
|
|
30
44
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graph.js","sourceRoot":"","sources":["../../../src/commands/registry/graph.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,cAAc,GAAqC;IAC9D;QACE,IAAI,EAAE,WAAW;QACjB,KAAK,EAAE,mBAAmB;QAC1B,OAAO,EAAE,kEAAkE;QAC3E,SAAS,EAAE,CAAC,YAAY,CAAC;QACzB,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE;YACR,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,uBAAuB,EAAE;YACzE,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE;YAC7D,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,wBAAwB,EAAE;YAC7E,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,kBAAkB,EAAE;YACvE,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,6CAA6C,EAAE;
|
|
1
|
+
{"version":3,"file":"graph.js","sourceRoot":"","sources":["../../../src/commands/registry/graph.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,cAAc,GAAqC;IAC9D;QACE,IAAI,EAAE,WAAW;QACjB,KAAK,EAAE,mBAAmB;QAC1B,OAAO,EAAE,kEAAkE;QAC3E,SAAS,EAAE,CAAC,YAAY,CAAC;QACzB,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE;YACR,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,uBAAuB,EAAE;YACzE,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE;YAC7D,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,wBAAwB,EAAE;YAC7E,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,kBAAkB,EAAE;YACvE,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,6CAA6C,EAAE;YAC9F;gBACE,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,uHAAuH;aAC1H;YACD;gBACE,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,sHAAsH;aACzH;SACF;QACD,QAAQ,EAAE;YACR;gBACE,WAAW,EAAE,kCAAkC;gBAC/C,UAAU,EAAE,+CAA+C;aAC5D;YACD;gBACE,WAAW,EAAE,4BAA4B;gBACzC,UAAU,EAAE,sCAAsC;aACnD;YACD;gBACE,WAAW,EAAE,2BAA2B;gBACxC,UAAU,EAAE,6DAA6D;aAC1E;YACD;gBACE,WAAW,EAAE,6BAA6B;gBAC1C,UAAU,EACR,kFAAkF;aACrF;SACF;QACD,OAAO,EAAE,CAAC,mBAAmB,CAAC;KAC/B;CACF,CAAC"}
|
|
@@ -39,9 +39,10 @@ interface HttpClientOptions {
|
|
|
39
39
|
idempotencyKey?: string;
|
|
40
40
|
apiVersionPrefix?: string;
|
|
41
41
|
}
|
|
42
|
+
type QueryValue = string | number | boolean | ReadonlyArray<string | number | boolean>;
|
|
42
43
|
export interface RequestOptions {
|
|
43
44
|
body?: unknown;
|
|
44
|
-
query?: Record<string,
|
|
45
|
+
query?: Record<string, QueryValue>;
|
|
45
46
|
/** Override wrapper step for this single request (for multi-step wrappers). */
|
|
46
47
|
wrapperStep?: string;
|
|
47
48
|
/** Override exit intent for this single request. */
|
|
@@ -58,6 +58,12 @@ function toQueryString(query) {
|
|
|
58
58
|
}
|
|
59
59
|
const params = new URLSearchParams();
|
|
60
60
|
for (const [key, value] of Object.entries(query)) {
|
|
61
|
+
if (Array.isArray(value)) {
|
|
62
|
+
for (const item of value) {
|
|
63
|
+
params.append(key, String(item));
|
|
64
|
+
}
|
|
65
|
+
continue;
|
|
66
|
+
}
|
|
61
67
|
params.set(key, String(value));
|
|
62
68
|
}
|
|
63
69
|
const encoded = params.toString();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../src/http/client.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../src/http/client.ts"],"names":[],"mappings":"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"}
|