graphify-openspec-bridge 1.0.0 → 1.0.1
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.
|
@@ -167,8 +167,9 @@ function cmdCheck(argv) {
|
|
|
167
167
|
}
|
|
168
168
|
|
|
169
169
|
function cmdInstall(argv) {
|
|
170
|
-
const target = resolveTarget(argv[0]);
|
|
171
170
|
const withConfig = argv.includes('--with-config');
|
|
171
|
+
const pathArg = argv.filter(a => a !== '--with-config')[0] || '';
|
|
172
|
+
const target = resolveTarget(pathArg);
|
|
172
173
|
|
|
173
174
|
console.log('');
|
|
174
175
|
console.log(bold(`${NAME} v${VERSION} — install`));
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
schema: graphify-augmented
|
|
2
|
+
|
|
3
|
+
context: |
|
|
4
|
+
This project uses graphify knowledge graph for codebase awareness.
|
|
5
|
+
Graph file: graphify-out/graph.json
|
|
6
|
+
GRAPH_REPORT.md: graphify-out/GRAPH_REPORT.md
|
|
7
|
+
Interactive viz: graphify-out/graph.html
|
|
8
|
+
|
|
9
|
+
Commands:
|
|
10
|
+
graphify query "<question>" - BFS traversal, broad context
|
|
11
|
+
graphify path "<A>" "<B>" - shortest path between concepts
|
|
12
|
+
graphify explain "<node>" - deep-dive on a node
|
|
13
|
+
|
|
14
|
+
rules:
|
|
15
|
+
proposal:
|
|
16
|
+
- Run `graphify query "<domain>"` BEFORE writing proposal
|
|
17
|
+
- Include Graph Context section with god nodes and communities
|
|
18
|
+
explore:
|
|
19
|
+
- Run ALL three: graphify query, graphify path, graphify explain
|
|
20
|
+
- Document confidence tags for each edge
|
|
21
|
+
specs:
|
|
22
|
+
- Reference exploration.md findings when defining requirements
|
|
23
|
+
design:
|
|
24
|
+
- Run `graphify path` to verify architectural connections
|
|
25
|
+
tasks:
|
|
26
|
+
- Annotate tasks with graph nodes: [Node: NodeName]
|