@dv.nghiem/flowdeck 0.1.2 → 0.2.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 (45) hide show
  1. package/README.md +1 -1
  2. package/dist/agents/auto-learner.d.ts +3 -0
  3. package/dist/agents/auto-learner.d.ts.map +1 -0
  4. package/dist/agents/index.d.ts +12 -9
  5. package/dist/agents/index.d.ts.map +1 -1
  6. package/dist/agents/orchestrator.d.ts.map +1 -1
  7. package/dist/agents/planner.d.ts +1 -0
  8. package/dist/agents/planner.d.ts.map +1 -1
  9. package/dist/agents/types.d.ts +1 -1
  10. package/dist/agents/types.d.ts.map +1 -1
  11. package/dist/config/index.d.ts +3 -0
  12. package/dist/config/index.d.ts.map +1 -0
  13. package/dist/config/loader.d.ts +7 -0
  14. package/dist/config/loader.d.ts.map +1 -0
  15. package/dist/config/schema.d.ts +21 -0
  16. package/dist/config/schema.d.ts.map +1 -0
  17. package/dist/hooks/auto-learn-hook.d.ts +20 -0
  18. package/dist/hooks/auto-learn-hook.d.ts.map +1 -0
  19. package/dist/hooks/guard-rails.d.ts.map +1 -1
  20. package/dist/hooks/orchestrator-guard-hook.d.ts +29 -0
  21. package/dist/hooks/orchestrator-guard-hook.d.ts.map +1 -0
  22. package/dist/hooks/session-events.d.ts.map +1 -1
  23. package/dist/index.d.ts.map +1 -1
  24. package/dist/index.js +3285 -119
  25. package/dist/lib/logger.d.ts +20 -0
  26. package/dist/lib/logger.d.ts.map +1 -0
  27. package/dist/tools/create-skill.d.ts +3 -0
  28. package/dist/tools/create-skill.d.ts.map +1 -0
  29. package/dist/tools/reflect.d.ts +3 -0
  30. package/dist/tools/reflect.d.ts.map +1 -0
  31. package/docs/agents.md +14 -62
  32. package/docs/commands.md +1 -1
  33. package/docs/configuration.md +80 -1
  34. package/docs/quick-start.md +1 -1
  35. package/docs/skills.md +1 -1
  36. package/docs/workflows.md +14 -14
  37. package/package.json +2 -2
  38. package/src/commands/fd-learn.md +36 -0
  39. package/src/commands/fd-reflect.md +30 -0
  40. package/src/rules/common/agent-orchestration.md +2 -4
  41. package/src/workflows/execute-phase.md +17 -14
  42. package/src/workflows/plan-flow.md +2 -2
  43. package/src/workflows/plan-phase.md +12 -12
  44. package/dist/agents/flowdeck.d.ts +0 -5
  45. package/dist/agents/flowdeck.d.ts.map +0 -1
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  name: plan-phase
3
- description: "Orchestrates /plan-phase — delegates to flowdeck-planner then flowdeck-plan-checker"
3
+ description: "Orchestrates /plan-phase — delegates to planner then plan-checker"
4
4
  triggers:
5
5
  - /plan-phase
6
6
  steps:
7
7
  - name: delegate_to_planner
8
- agent: "@flowdeck-planner"
9
- action: Spawn flowdeck-planner agent to create PLAN.md
8
+ agent: "@planner"
9
+ action: Spawn planner agent to create PLAN.md
10
10
  - name: verify_plan_quality
11
- agent: "@flowdeck-plan-checker"
12
- action: Spawn flowdeck-plan-checker agent to verify plan completeness, feasibility, testability
11
+ agent: "@plan-checker"
12
+ action: Spawn plan-checker agent to verify plan completeness, feasibility, testability
13
13
  - name: present_results
14
14
  agent: "@orchestrator"
15
15
  action: Present results to user — PASS or FAIL with recommendations
@@ -19,13 +19,13 @@ steps:
19
19
 
20
20
  ## Purpose
21
21
 
22
- Execute `/plan-phase [N]` to create a structured implementation plan using flowdeck agents.
22
+ Execute `/plan-phase [N]` to create a structured implementation plan using FlowDeck agents.
23
23
 
24
24
  ## Process
25
25
 
26
- ### Step 1: Delegate to flowdeck-planner
26
+ ### Step 1: Delegate to planner
27
27
 
28
- Spawn flowdeck-planner agent with:
28
+ Spawn planner agent with:
29
29
  - ROADMAP.md (phase structure)
30
30
  - REQUIREMENTS.md (requirements for this phase)
31
31
  - PROJECT.md (project context)
@@ -35,7 +35,7 @@ Agent will produce `.planning/phases/phase-N/PLAN.md`.
35
35
 
36
36
  ### Step 2: Verify Plan Quality
37
37
 
38
- Spawn flowdeck-plan-checker agent to review PLAN.md:
38
+ Spawn plan-checker agent to review PLAN.md:
39
39
 
40
40
  **Completeness checklist:**
41
41
  - [ ] All requirements mapped to tasks?
@@ -84,7 +84,7 @@ Return to user for decisions:
84
84
  ```
85
85
  Plan not yet ready. Review findings above and:
86
86
  - Type CONFIRM to proceed anyway (accept gaps)
87
- - Type FIX to have flowdeck-planner revise the plan
87
+ - Type FIX to have planner revise the plan
88
88
  - Describe specific changes needed
89
89
  ```
90
90
 
@@ -92,8 +92,8 @@ Plan not yet ready. Review findings above and:
92
92
 
93
93
  | Agent | Model | Purpose |
94
94
  |-------|-------|---------|
95
- | flowdeck-planner | Sonnet 4.6 | Creates executable PLAN.md with task breakdown |
96
- | flowdeck-plan-checker | Haiku 4.5 | Reviews plan quality before execution |
95
+ | planner | Sonnet 4.6 | Creates executable PLAN.md with task breakdown |
96
+ | plan-checker | Haiku 4.5 | Reviews plan quality before execution |
97
97
 
98
98
  ## Output Files
99
99
 
@@ -1,5 +0,0 @@
1
- import type { AgentFactory } from './types';
2
- export declare const createFlowdeckPlannerAgent: AgentFactory;
3
- export declare const createFlowdeckExecutorAgent: AgentFactory;
4
- export declare const createFlowdeckPlanCheckerAgent: AgentFactory;
5
- //# sourceMappingURL=flowdeck.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"flowdeck.d.ts","sourceRoot":"","sources":["../../src/agents/flowdeck.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAmB,YAAY,EAAE,MAAM,SAAS,CAAC;AAsR7D,eAAO,MAAM,0BAA0B,EAAE,YAqBxC,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,YAqBzC,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,YAqB5C,CAAC"}