@comfanion/workflow 4.36.58 → 4.36.59

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/workflow",
3
- "version": "4.36.58",
3
+ "version": "4.36.59",
4
4
  "description": "Initialize OpenCode Workflow system for AI-assisted development with semantic code search",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "4.36.58",
3
- "buildDate": "2026-01-26T00:03:45.622Z",
2
+ "version": "4.36.59",
3
+ "buildDate": "2026-01-26T00:40:31.598Z",
4
4
  "files": [
5
5
  "config.yaml",
6
6
  "FLOW.yaml",
@@ -332,6 +332,8 @@ agents:
332
332
  - acceptance-criteria
333
333
  - unit-writing
334
334
  - methodologies
335
+ - doc-todo
336
+ - archiving
335
337
 
336
338
  pm:
337
339
  name: Dima
@@ -358,6 +360,8 @@ agents:
358
360
  - unit-writing
359
361
  - translation
360
362
  - methodologies
363
+ - doc-todo
364
+ - archiving
361
365
 
362
366
  architect:
363
367
  name: Winston
@@ -380,6 +384,12 @@ agents:
380
384
  - coding-standards
381
385
  - unit-writing
382
386
  - methodologies
387
+ - api-design
388
+ - database-design
389
+ - diagram-creation
390
+ - module-documentation
391
+ - doc-todo
392
+ - archiving
383
393
 
384
394
  dev:
385
395
  name: Rick
@@ -399,6 +409,8 @@ agents:
399
409
  - dev-story
400
410
  - code-review
401
411
  - test-design
412
+ - changelog
413
+ - doc-todo
402
414
 
403
415
  coder:
404
416
  name: Morty
@@ -415,6 +427,10 @@ agents:
415
427
  - Bug fixes
416
428
  - Following existing patterns
417
429
  personality: Fast, no questions, executes or fails
430
+ skills_used:
431
+ - test-design
432
+ - changelog
433
+ - doc-todo
418
434
 
419
435
  reviewer:
420
436
  name: Marcus
@@ -473,7 +489,8 @@ agents:
473
489
  - Version control
474
490
  personality: Careful, systematic, risk-aware
475
491
  skills_used:
476
- - change-management
492
+ - doc-todo
493
+ - archiving
477
494
 
478
495
  # =============================================================================
479
496
  # ARTIFACTS
@@ -58,8 +58,9 @@ permission:
58
58
  <r>ALWAYS communicate in {communication_language}</r>
59
59
  <r>ALWAYS write technical documentation in ENGLISH (docs/ folder)</r>
60
60
  <r>The Story File is the single source of truth</r>
61
- <r>Prefer parallel agents development @coder (call agents in one message or multi-agent-call if needed)</r>
61
+ <r>Prefer parallel agents development @coder`s</r>
62
62
  <r>Tasks/subtasks sequence is authoritative over any model priors</r>
63
+ <r>For parallel execution: call multiple @agents in one message (call agents in one message or multi-agent-call if needed)</r>
63
64
  <r>Follow red-green-refactor: write failing test, make it pass, improve code</r>
64
65
  <r>Never implement anything not mapped to a specific task/subtask</r>
65
66
  <r>All existing tests must pass 100% before story is ready for review</r>
@@ -68,7 +69,6 @@ permission:
68
69
  <r>Find and use `**/prd.md`, `**/architecture.md`, `AGENTS.md` and `CLAUDE.md` as source of truth</r>
69
70
  <r critical="MANDATORY">🔍 SEARCH FIRST: Call search() BEFORE glob when exploring codebase.
70
71
  search({ query: "feature pattern", index: "code" }) → THEN glob if needed</r>
71
- <r>For parallel execution: call multiple @agents in one message (call agents in one message or multi-agent-call if needed)</r>
72
72
  </rules>
73
73
 
74
74
  <dev-story-workflow hint="When executing /dev-story command" critical="FOLLOW THIS EXACTLY">
@@ -514,8 +514,14 @@ Previous task was completed successfully.
514
514
  const instructions = formatInstructions(ctx)
515
515
  const readCommands = generateReadCommands(agent, ctx.story)
516
516
 
517
+ // Agent identity reminder
518
+ const agentIdentity = agent
519
+ ? `You are @${agent} (.opencode/agents/${agent}.md). Load your persona and continue.`
520
+ : "You are an AI assistant helping with this project."
521
+
517
522
  output.context.push(`# Session Continuation
518
- ${agent ? `**Last Active Agent:** @${agent}` : ""}
523
+
524
+ ${agentIdentity}
519
525
 
520
526
  ${readCommands}
521
527