@dv.nghiem/flowdeck 0.3.9 → 0.4.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.
Files changed (129) hide show
  1. package/README.md +13 -21
  2. package/dist/agents/code-explorer.d.ts.map +1 -1
  3. package/dist/agents/mapper.d.ts.map +1 -1
  4. package/dist/agents/orchestrator.d.ts.map +1 -1
  5. package/dist/agents/planner.d.ts.map +1 -1
  6. package/dist/agents/specialist.d.ts.map +1 -1
  7. package/dist/dashboard/server.mjs +12 -2
  8. package/dist/hooks/compaction-hook.d.ts +1 -2
  9. package/dist/hooks/compaction-hook.d.ts.map +1 -1
  10. package/dist/hooks/file-tracker.d.ts +6 -0
  11. package/dist/hooks/file-tracker.d.ts.map +1 -1
  12. package/dist/hooks/notifications.d.ts +73 -8
  13. package/dist/hooks/notifications.d.ts.map +1 -1
  14. package/dist/hooks/notifications.test.d.ts +14 -0
  15. package/dist/hooks/notifications.test.d.ts.map +1 -0
  16. package/dist/hooks/session-idle-hook.d.ts +5 -3
  17. package/dist/hooks/session-idle-hook.d.ts.map +1 -1
  18. package/dist/hooks/session-start.d.ts.map +1 -1
  19. package/dist/index.d.ts.map +1 -1
  20. package/dist/index.js +822 -796
  21. package/dist/lib/completion-validator.d.ts +51 -0
  22. package/dist/lib/completion-validator.d.ts.map +1 -0
  23. package/dist/lib/recommended-question.d.ts +24 -0
  24. package/dist/lib/recommended-question.d.ts.map +1 -0
  25. package/dist/lib/research-gate.d.ts +97 -0
  26. package/dist/lib/research-gate.d.ts.map +1 -0
  27. package/dist/lib/research-gate.test.d.ts +2 -0
  28. package/dist/lib/research-gate.test.d.ts.map +1 -0
  29. package/dist/mcp/index.d.ts +12 -2
  30. package/dist/mcp/index.d.ts.map +1 -1
  31. package/dist/services/codegraph.d.ts +36 -0
  32. package/dist/services/codegraph.d.ts.map +1 -0
  33. package/dist/services/codegraph.test.d.ts +2 -0
  34. package/dist/services/codegraph.test.d.ts.map +1 -0
  35. package/dist/services/question-guard.d.ts +4 -0
  36. package/dist/services/question-guard.d.ts.map +1 -1
  37. package/dist/services/recommended-question.test.d.ts +2 -0
  38. package/dist/services/recommended-question.test.d.ts.map +1 -0
  39. package/dist/services/supervisor-binding.d.ts +3 -1
  40. package/dist/services/supervisor-binding.d.ts.map +1 -1
  41. package/dist/tools/codebase-index.d.ts +30 -0
  42. package/dist/tools/codebase-index.d.ts.map +1 -0
  43. package/dist/tools/codebase-index.test.d.ts +2 -0
  44. package/dist/tools/codebase-index.test.d.ts.map +1 -0
  45. package/dist/tools/codegraph-tool.d.ts +3 -0
  46. package/dist/tools/codegraph-tool.d.ts.map +1 -0
  47. package/dist/tools/planning-state-lib.d.ts +23 -0
  48. package/dist/tools/planning-state-lib.d.ts.map +1 -1
  49. package/docs/agents/index.md +154 -0
  50. package/docs/commands/fd-ask.md +71 -39
  51. package/docs/commands/fd-checkpoint.md +63 -8
  52. package/docs/commands/fd-deploy-check.md +166 -9
  53. package/docs/commands/fd-design.md +101 -0
  54. package/docs/commands/fd-discuss.md +87 -20
  55. package/docs/commands/fd-doctor.md +100 -13
  56. package/docs/commands/fd-done.md +215 -0
  57. package/docs/commands/fd-execute.md +104 -0
  58. package/docs/commands/fd-fix-bug.md +144 -24
  59. package/docs/commands/fd-map-codebase.md +85 -21
  60. package/docs/commands/fd-multi-repo.md +155 -40
  61. package/docs/commands/fd-new-feature.md +63 -19
  62. package/docs/commands/fd-plan.md +80 -27
  63. package/docs/commands/fd-quick.md +143 -29
  64. package/docs/commands/fd-reflect.md +81 -13
  65. package/docs/commands/fd-resume.md +65 -8
  66. package/docs/commands/fd-status.md +80 -12
  67. package/docs/commands/fd-suggest.md +114 -0
  68. package/docs/commands/fd-translate-intent.md +69 -9
  69. package/docs/commands/fd-verify.md +71 -14
  70. package/docs/commands/fd-write-docs.md +121 -8
  71. package/docs/concepts/architecture.md +163 -0
  72. package/docs/concepts/governance.md +242 -0
  73. package/docs/concepts/intelligence.md +145 -0
  74. package/docs/concepts/multi-repo.md +227 -0
  75. package/docs/concepts/workflows.md +205 -0
  76. package/docs/configuration/index.md +208 -0
  77. package/docs/configuration/opencode-settings.md +98 -0
  78. package/docs/getting-started/first-project.md +126 -0
  79. package/docs/getting-started/installation.md +73 -0
  80. package/docs/getting-started/quick-start.md +74 -0
  81. package/docs/index.md +36 -72
  82. package/docs/reference/hooks.md +176 -0
  83. package/docs/reference/rules.md +109 -0
  84. package/docs/skills/code-review.md +47 -0
  85. package/docs/skills/index.md +148 -0
  86. package/docs/skills/planning.md +39 -0
  87. package/package.json +1 -1
  88. package/src/commands/fd-discuss.md +74 -10
  89. package/src/commands/fd-done.md +196 -0
  90. package/src/commands/fd-execute.md +43 -6
  91. package/src/commands/fd-fix-bug.md +43 -6
  92. package/src/commands/fd-map-codebase.md +99 -19
  93. package/src/commands/fd-new-feature.md +14 -5
  94. package/src/commands/fd-plan.md +38 -1
  95. package/src/commands/fd-quick.md +1 -1
  96. package/src/commands/fd-resume.md +1 -1
  97. package/src/commands/fd-status.md +1 -1
  98. package/src/commands/fd-verify.md +16 -2
  99. package/src/commands/fd-write-docs.md +30 -5
  100. package/src/skills/context-load/SKILL.md +1 -1
  101. package/dist/hooks/memory-hook.d.ts +0 -28
  102. package/dist/hooks/memory-hook.d.ts.map +0 -1
  103. package/dist/services/memory-store.d.ts +0 -73
  104. package/dist/services/memory-store.d.ts.map +0 -1
  105. package/dist/services/memory-store.test.d.ts +0 -2
  106. package/dist/services/memory-store.test.d.ts.map +0 -1
  107. package/dist/tools/memory-search.d.ts +0 -3
  108. package/dist/tools/memory-search.d.ts.map +0 -1
  109. package/dist/tools/memory-status.d.ts +0 -3
  110. package/dist/tools/memory-status.d.ts.map +0 -1
  111. package/docs/USER_GUIDE.md +0 -20
  112. package/docs/agents.md +0 -544
  113. package/docs/best-practices.md +0 -47
  114. package/docs/commands/fd-new-project.md +0 -24
  115. package/docs/commands.md +0 -557
  116. package/docs/configuration.md +0 -325
  117. package/docs/design-first-workflow.md +0 -94
  118. package/docs/feature-integration-architecture.md +0 -227
  119. package/docs/installation.md +0 -123
  120. package/docs/intelligence.md +0 -370
  121. package/docs/memory.md +0 -69
  122. package/docs/multi-repo.md +0 -201
  123. package/docs/notifications.md +0 -170
  124. package/docs/optimization-baseline.md +0 -21
  125. package/docs/quick-start.md +0 -197
  126. package/docs/rules.md +0 -432
  127. package/docs/skills.md +0 -417
  128. package/docs/workflows.md +0 -134
  129. package/src/commands/fd-new-project.md +0 -114
@@ -14,7 +14,30 @@ Default: all formats
14
14
 
15
15
  ## Process
16
16
 
17
- ### Step 1: Explore APIs
17
+ ### Step 1: CodeGraph Intelligence Check
18
+
19
+ Before any file exploration, check if codegraph provides a pre-built symbol index:
20
+
21
+ ```
22
+ codegraph action=check
23
+ ```
24
+
25
+ - **If codegraph indexed (fresh)**: Use `codegraph_search`, `codegraph_explore`, `codegraph_node` to enumerate exported symbols and API entry points. This is faster and more complete than grep.
26
+ - Log: "codegraph available — using symbol index for API discovery"
27
+ - **If codegraph absent or stale**: Fall through to @mapper-based exploration
28
+
29
+ ### Step 2: Explore APIs
30
+
31
+ **If codegraph is available:**
32
+
33
+ Use codegraph MCP tools to find all exported symbols:
34
+ ```
35
+ codegraph_search("export ") # exported symbols
36
+ codegraph_explore("<scope or src/>") # survey module structure
37
+ codegraph_context("<key entry points>") # full context per area
38
+ ```
39
+
40
+ **If codegraph is not available:**
18
41
 
19
42
  Spawn `@mapper` to:
20
43
  - Find all exported functions, classes, and types
@@ -28,7 +51,7 @@ grep -rn "export " src/ --include="*.ts"
28
51
  grep -rn "export interface\|export type\|export class" src/ --include="*.ts"
29
52
  ```
30
53
 
31
- ### Step 2: Draft Documentation
54
+ ### Step 3: Draft Documentation
32
55
 
33
56
  Spawn `@writer` to produce:
34
57
 
@@ -57,7 +80,7 @@ const result = functionName(value);
57
80
  **Troubleshooting**
58
81
  - Common errors and their solutions
59
82
 
60
- ### Step 3: Review for Accuracy
83
+ ### Step 4: Review for Accuracy
61
84
 
62
85
  Spawn `@reviewer` to verify:
63
86
  - Every documented function/method actually exists
@@ -65,7 +88,9 @@ Spawn `@reviewer` to verify:
65
88
  - Examples are syntactically correct
66
89
  - No outdated API references
67
90
 
68
- ### Step 4: Finalize
91
+ If codegraph is available: use `codegraph_node` to verify specific function signatures against documentation.
92
+
93
+ ### Step 5: Finalize
69
94
 
70
95
  Writer incorporates feedback and writes final docs to:
71
96
  - `README.md` — project overview and quick start
@@ -79,4 +104,4 @@ Updated documentation files with:
79
104
  - Working code examples
80
105
  - Clear explanations of behavior
81
106
 
82
- Report: files written/updated, public APIs documented, any gaps found.
107
+ Report: files written/updated, public APIs documented, any gaps found, codegraph used ✅/❌.
@@ -60,4 +60,4 @@ After loading context, produce this briefing:
60
60
  **Key Conventions**: [2-3 most important patterns]
61
61
  ```
62
62
 
63
- If any file is missing, note it: "STATE.md not found — run `/fd-new-project` to initialize."
63
+ If any file is missing, note it: "STATE.md not found — run `/fd-map-codebase` then `/fd-new-feature` to initialize."
@@ -1,28 +0,0 @@
1
- import { type Session } from "../services/memory-store";
2
- export declare function onSessionCreated(directory: string, contentSessionId: string, prompt?: string): Session;
3
- export declare function onToolExecuted(contentSessionId: string, toolName: string, toolInput: Record<string, unknown>, toolResponse: string | null, directory: string): void;
4
- export declare function onMessageUpdated(contentSessionId: string, role: string, content: string, directory: string): void;
5
- /**
6
- * Called when OpenCode compacts a session (session.compacted event).
7
- *
8
- * Previously this silently dropped the summary if the session was not in
9
- * activeSessions (e.g. after plugin reload or cross-process sessions). Now it
10
- * falls back to a DB lookup so the summary is never lost.
11
- */
12
- export declare function onSessionCompact(contentSessionId: string, summary: string): void;
13
- export declare function onSessionEnd(contentSessionId: string, lastMessage?: string): void;
14
- export declare function getSessionContext(directory: string, contentSessionId: string): {
15
- context: string;
16
- previousSessions: Session[];
17
- };
18
- export declare function clearSession(contentSessionId: string): void;
19
- export declare const memoryHook: {
20
- onSessionCreated: typeof onSessionCreated;
21
- onToolExecuted: typeof onToolExecuted;
22
- onMessageUpdated: typeof onMessageUpdated;
23
- onSessionCompact: typeof onSessionCompact;
24
- onSessionEnd: typeof onSessionEnd;
25
- getSessionContext: typeof getSessionContext;
26
- clearSession: typeof clearSession;
27
- };
28
- //# sourceMappingURL=memory-hook.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"memory-hook.d.ts","sourceRoot":"","sources":["../../src/hooks/memory-hook.ts"],"names":[],"mappings":"AAAA,OAAO,EAQL,KAAK,OAAO,EAGb,MAAM,0BAA0B,CAAA;AAgGjC,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,CAYtG;AAED,wBAAgB,cAAc,CAC5B,gBAAgB,EAAE,MAAM,EACxB,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAClC,YAAY,EAAE,MAAM,GAAG,IAAI,EAC3B,SAAS,EAAE,MAAM,GAChB,IAAI,CA4BN;AAED,wBAAgB,gBAAgB,CAC9B,gBAAgB,EAAE,MAAM,EACxB,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,MAAM,EACf,SAAS,EAAE,MAAM,GAChB,IAAI,CA6BN;AAED;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAAC,gBAAgB,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,CA+BhF;AAED,wBAAgB,YAAY,CAAC,gBAAgB,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CA2BjF;AAED,wBAAgB,iBAAiB,CAAC,SAAS,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,GAAG;IAC9E,OAAO,EAAE,MAAM,CAAA;IACf,gBAAgB,EAAE,OAAO,EAAE,CAAA;CAC5B,CAIA;AAED,wBAAgB,YAAY,CAAC,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAE3D;AAED,eAAO,MAAM,UAAU;;;;;;;;CAQtB,CAAA"}
@@ -1,73 +0,0 @@
1
- /**
2
- * Structured handoff artifact persisted alongside the text summary.
3
- * Derived from observations + LLM compaction output.
4
- */
5
- export interface HandoffMetadata {
6
- workflow_name: string | null;
7
- current_status: string;
8
- current_stage: string | null;
9
- completed_stages: string[];
10
- pending_stages: string[];
11
- key_decisions: string[];
12
- blockers: string[];
13
- important_files: string[];
14
- approvals: string[];
15
- open_questions: string[];
16
- next_steps: string[];
17
- tool_names_used: string[];
18
- observation_count: number;
19
- updated_at: string;
20
- }
21
- export interface Observation {
22
- id?: number;
23
- session_id: number;
24
- tool_name: string;
25
- tool_input: Record<string, unknown> | null;
26
- tool_response: string | null;
27
- directory: string;
28
- created_at?: string;
29
- }
30
- export interface Session {
31
- id?: number;
32
- content_session_id: string;
33
- project: string;
34
- directory: string;
35
- created_at?: string;
36
- last_active_at?: string;
37
- summary?: string | null;
38
- prompt_count?: number;
39
- }
40
- export interface Summary {
41
- id?: number;
42
- session_id: number;
43
- content: string;
44
- metadata?: HandoffMetadata | null;
45
- created_at?: string;
46
- }
47
- export interface SearchResult {
48
- observation: Observation;
49
- session: Session;
50
- }
51
- export declare function initSession(contentSessionId: string, project: string, directory: string): Session;
52
- export declare function storeObservation(sessionId: number, toolName: string, toolInput: unknown, toolResponse: string | null, directory: string): Observation;
53
- export declare function storeSummary(sessionId: number, content: string, metadata?: HandoffMetadata | null): Summary;
54
- export declare function getRecentSessions(directory: string, limit?: number): Session[];
55
- export declare function getObservationsForSession(sessionId: number): Observation[];
56
- export declare function getSessionSummary(sessionId: number): Summary | null;
57
- export declare function getSessionByContentSessionId(contentSessionId: string): Session | null;
58
- export declare function getRecentObservations(directory: string, limit?: number): SearchResult[];
59
- export declare function searchObservations(directory: string, query: string, limit?: number): SearchResult[];
60
- export declare function getContextForDirectory(directory: string, maxObservations?: number): string;
61
- export declare function closeDatabase(): void;
62
- /**
63
- * Returns current connection-level PRAGMA values.
64
- * Intended for diagnostics and tests — queries via the shared singleton so the
65
- * values reflect what this module actually set, not a second connection.
66
- */
67
- export declare function getDbSettings(): {
68
- journal_mode: string;
69
- busy_timeout: number;
70
- synchronous: number;
71
- wal_autocheckpoint: number;
72
- };
73
- //# sourceMappingURL=memory-store.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"memory-store.d.ts","sourceRoot":"","sources":["../../src/services/memory-store.ts"],"names":[],"mappings":"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"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=memory-store.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"memory-store.test.d.ts","sourceRoot":"","sources":["../../src/services/memory-store.test.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- import { type ToolDefinition } from "@opencode-ai/plugin";
2
- export declare const memorySearchTool: ToolDefinition;
3
- //# sourceMappingURL=memory-search.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"memory-search.d.ts","sourceRoot":"","sources":["../../src/tools/memory-search.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAA;AAQ/D,eAAO,MAAM,gBAAgB,EAAE,cAgF7B,CAAA"}
@@ -1,3 +0,0 @@
1
- import { type ToolDefinition } from "@opencode-ai/plugin";
2
- export declare const memoryStatusTool: ToolDefinition;
3
- //# sourceMappingURL=memory-status.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"memory-status.d.ts","sourceRoot":"","sources":["../../src/tools/memory-status.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAA;AAU/D,eAAO,MAAM,gBAAgB,EAAE,cAkE7B,CAAA"}
@@ -1,20 +0,0 @@
1
- # FlowDeck User Guide
2
-
3
- > **This file is superseded by the modular documentation.**
4
- > See **[docs/index.md](./index.md)** for the full table of contents.
5
-
6
- ## Quick links
7
-
8
- | Topic | File |
9
- |-------|------|
10
- | Installation & setup | [installation.md](./installation.md) |
11
- | First 15 minutes | [quick-start.md](./quick-start.md) |
12
- | Configuration reference | [configuration.md](./configuration.md) |
13
- | All agents | [agents.md](./agents.md) |
14
- | All skills | [skills.md](./skills.md) |
15
- | All workflows | [workflows.md](./workflows.md) |
16
- | All commands | [commands.md](./commands.md) |
17
- | Language rules | [rules.md](./rules.md) |
18
- | Parallel execution | [parallel-execution.md](./parallel-execution.md) |
19
- | Multi-repo / microservices | [multi-repo.md](./fd-multi-repo.md) |
20
- | System notifications | [notifications.md](./notifications.md) |