@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.
- package/README.md +13 -21
- package/dist/agents/code-explorer.d.ts.map +1 -1
- package/dist/agents/mapper.d.ts.map +1 -1
- package/dist/agents/orchestrator.d.ts.map +1 -1
- package/dist/agents/planner.d.ts.map +1 -1
- package/dist/agents/specialist.d.ts.map +1 -1
- package/dist/dashboard/server.mjs +12 -2
- package/dist/hooks/compaction-hook.d.ts +1 -2
- package/dist/hooks/compaction-hook.d.ts.map +1 -1
- package/dist/hooks/file-tracker.d.ts +6 -0
- package/dist/hooks/file-tracker.d.ts.map +1 -1
- package/dist/hooks/notifications.d.ts +73 -8
- package/dist/hooks/notifications.d.ts.map +1 -1
- package/dist/hooks/notifications.test.d.ts +14 -0
- package/dist/hooks/notifications.test.d.ts.map +1 -0
- package/dist/hooks/session-idle-hook.d.ts +5 -3
- package/dist/hooks/session-idle-hook.d.ts.map +1 -1
- package/dist/hooks/session-start.d.ts.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +822 -796
- package/dist/lib/completion-validator.d.ts +51 -0
- package/dist/lib/completion-validator.d.ts.map +1 -0
- package/dist/lib/recommended-question.d.ts +24 -0
- package/dist/lib/recommended-question.d.ts.map +1 -0
- package/dist/lib/research-gate.d.ts +97 -0
- package/dist/lib/research-gate.d.ts.map +1 -0
- package/dist/lib/research-gate.test.d.ts +2 -0
- package/dist/lib/research-gate.test.d.ts.map +1 -0
- package/dist/mcp/index.d.ts +12 -2
- package/dist/mcp/index.d.ts.map +1 -1
- package/dist/services/codegraph.d.ts +36 -0
- package/dist/services/codegraph.d.ts.map +1 -0
- package/dist/services/codegraph.test.d.ts +2 -0
- package/dist/services/codegraph.test.d.ts.map +1 -0
- package/dist/services/question-guard.d.ts +4 -0
- package/dist/services/question-guard.d.ts.map +1 -1
- package/dist/services/recommended-question.test.d.ts +2 -0
- package/dist/services/recommended-question.test.d.ts.map +1 -0
- package/dist/services/supervisor-binding.d.ts +3 -1
- package/dist/services/supervisor-binding.d.ts.map +1 -1
- package/dist/tools/codebase-index.d.ts +30 -0
- package/dist/tools/codebase-index.d.ts.map +1 -0
- package/dist/tools/codebase-index.test.d.ts +2 -0
- package/dist/tools/codebase-index.test.d.ts.map +1 -0
- package/dist/tools/codegraph-tool.d.ts +3 -0
- package/dist/tools/codegraph-tool.d.ts.map +1 -0
- package/dist/tools/planning-state-lib.d.ts +23 -0
- package/dist/tools/planning-state-lib.d.ts.map +1 -1
- package/docs/agents/index.md +154 -0
- package/docs/commands/fd-ask.md +71 -39
- package/docs/commands/fd-checkpoint.md +63 -8
- package/docs/commands/fd-deploy-check.md +166 -9
- package/docs/commands/fd-design.md +101 -0
- package/docs/commands/fd-discuss.md +87 -20
- package/docs/commands/fd-doctor.md +100 -13
- package/docs/commands/fd-done.md +215 -0
- package/docs/commands/fd-execute.md +104 -0
- package/docs/commands/fd-fix-bug.md +144 -24
- package/docs/commands/fd-map-codebase.md +85 -21
- package/docs/commands/fd-multi-repo.md +155 -40
- package/docs/commands/fd-new-feature.md +63 -19
- package/docs/commands/fd-plan.md +80 -27
- package/docs/commands/fd-quick.md +143 -29
- package/docs/commands/fd-reflect.md +81 -13
- package/docs/commands/fd-resume.md +65 -8
- package/docs/commands/fd-status.md +80 -12
- package/docs/commands/fd-suggest.md +114 -0
- package/docs/commands/fd-translate-intent.md +69 -9
- package/docs/commands/fd-verify.md +71 -14
- package/docs/commands/fd-write-docs.md +121 -8
- package/docs/concepts/architecture.md +163 -0
- package/docs/concepts/governance.md +242 -0
- package/docs/concepts/intelligence.md +145 -0
- package/docs/concepts/multi-repo.md +227 -0
- package/docs/concepts/workflows.md +205 -0
- package/docs/configuration/index.md +208 -0
- package/docs/configuration/opencode-settings.md +98 -0
- package/docs/getting-started/first-project.md +126 -0
- package/docs/getting-started/installation.md +73 -0
- package/docs/getting-started/quick-start.md +74 -0
- package/docs/index.md +36 -72
- package/docs/reference/hooks.md +176 -0
- package/docs/reference/rules.md +109 -0
- package/docs/skills/code-review.md +47 -0
- package/docs/skills/index.md +148 -0
- package/docs/skills/planning.md +39 -0
- package/package.json +1 -1
- package/src/commands/fd-discuss.md +74 -10
- package/src/commands/fd-done.md +196 -0
- package/src/commands/fd-execute.md +43 -6
- package/src/commands/fd-fix-bug.md +43 -6
- package/src/commands/fd-map-codebase.md +99 -19
- package/src/commands/fd-new-feature.md +14 -5
- package/src/commands/fd-plan.md +38 -1
- package/src/commands/fd-quick.md +1 -1
- package/src/commands/fd-resume.md +1 -1
- package/src/commands/fd-status.md +1 -1
- package/src/commands/fd-verify.md +16 -2
- package/src/commands/fd-write-docs.md +30 -5
- package/src/skills/context-load/SKILL.md +1 -1
- package/dist/hooks/memory-hook.d.ts +0 -28
- package/dist/hooks/memory-hook.d.ts.map +0 -1
- package/dist/services/memory-store.d.ts +0 -73
- package/dist/services/memory-store.d.ts.map +0 -1
- package/dist/services/memory-store.test.d.ts +0 -2
- package/dist/services/memory-store.test.d.ts.map +0 -1
- package/dist/tools/memory-search.d.ts +0 -3
- package/dist/tools/memory-search.d.ts.map +0 -1
- package/dist/tools/memory-status.d.ts +0 -3
- package/dist/tools/memory-status.d.ts.map +0 -1
- package/docs/USER_GUIDE.md +0 -20
- package/docs/agents.md +0 -544
- package/docs/best-practices.md +0 -47
- package/docs/commands/fd-new-project.md +0 -24
- package/docs/commands.md +0 -557
- package/docs/configuration.md +0 -325
- package/docs/design-first-workflow.md +0 -94
- package/docs/feature-integration-architecture.md +0 -227
- package/docs/installation.md +0 -123
- package/docs/intelligence.md +0 -370
- package/docs/memory.md +0 -69
- package/docs/multi-repo.md +0 -201
- package/docs/notifications.md +0 -170
- package/docs/optimization-baseline.md +0 -21
- package/docs/quick-start.md +0 -197
- package/docs/rules.md +0 -432
- package/docs/skills.md +0 -417
- package/docs/workflows.md +0 -134
- 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:
|
|
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
|
|
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
|
|
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
|
-
|
|
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-
|
|
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 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"memory-store.test.d.ts","sourceRoot":"","sources":["../../src/services/memory-store.test.ts"],"names":[],"mappings":""}
|
|
@@ -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 +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"}
|
package/docs/USER_GUIDE.md
DELETED
|
@@ -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) |
|