@comfanion/workflow 4.36.46 → 4.36.47

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.46",
3
+ "version": "4.36.47",
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.46",
3
- "buildDate": "2026-01-25T02:31:28.158Z",
2
+ "version": "4.36.47",
3
+ "buildDate": "2026-01-25T02:32:44.569Z",
4
4
  "files": [
5
5
  "config.yaml",
6
6
  "FLOW.yaml",
@@ -475,138 +475,6 @@ agents:
475
475
  skills_used:
476
476
  - change-management
477
477
 
478
- # =============================================================================
479
- # COMMANDS (Entry Points)
480
- # =============================================================================
481
- commands:
482
- # Planning Commands
483
- requirements:
484
- description: Gather FR/NFR requirements
485
- agent: analyst
486
- file: commands/requirements.md
487
- skills_loaded: [requirements-gathering, acceptance-criteria]
488
-
489
- prd:
490
- description: Create/edit PRD
491
- agent: pm
492
- file: commands/prd.md
493
- skills_loaded: [prd-writing, acceptance-criteria]
494
-
495
- coding-standards:
496
- description: Define coding standards
497
- agent: architect
498
- file: commands/coding-standards.md
499
- skills_loaded: [coding-standards]
500
-
501
- architecture:
502
- description: Create/edit architecture
503
- agent: architect
504
- file: commands/architecture.md
505
- skills_loaded: [architecture-design, adr-writing]
506
-
507
- # Sprint Commands
508
- epics:
509
- description: Create epics from PRD
510
- agent: pm
511
- file: commands/epics.md
512
- skills_loaded: [epic-writing, acceptance-criteria]
513
-
514
- stories:
515
- description: Create stories for epic
516
- agent: pm
517
- file: commands/stories.md
518
- arguments:
519
- - name: epic-id
520
- required: true
521
- skills_loaded: [story-writing, acceptance-criteria]
522
-
523
- sprint-plan:
524
- description: Plan sprints
525
- agent: pm
526
- file: commands/sprint-plan.md
527
- skills_loaded: [sprint-planning]
528
-
529
- jira-sync:
530
- description: Sync to Jira
531
- agent: pm
532
- file: commands/jira-sync.md
533
- skills_loaded: [jira-integration]
534
-
535
- # Implementation Commands
536
- dev-story:
537
- description: Implement a story
538
- agent: dev
539
- file: commands/dev-story.md
540
- arguments:
541
- - name: story-path
542
- required: false
543
- skills_loaded: [dev-story, test-design]
544
-
545
- review-story:
546
- description: Review completed story (security, quality, correctness)
547
- agent: reviewer
548
- file: commands/review-story.md
549
- arguments:
550
- - name: story-path
551
- required: false
552
- skills_loaded: [code-review]
553
- auto_invoke:
554
- when: story_status_review # Auto-invoke when story marked as "review"
555
- config: development.auto_review # Controlled by config.yaml
556
-
557
- code-review:
558
- description: Review implemented code (legacy - use /review-story)
559
- agent: dev
560
- file: commands/code-review.md
561
- arguments:
562
- - name: story-path
563
- required: false
564
- skills_loaded: [code-review]
565
-
566
- # Utility Commands
567
- validate:
568
- description: Validate artifacts
569
- agent: architect
570
- file: commands/validate.md
571
- arguments:
572
- - name: type
573
- values: [requirements, prd, architecture, epics, stories, all]
574
- skills_loaded: [requirements-validation, prd-validation, architecture-validation]
575
-
576
- workflow-status:
577
- description: Show workflow status
578
- agent: pm
579
- file: commands/workflow-status.md
580
-
581
- research:
582
- description: Conduct research
583
- agent: researcher
584
- file: commands/research.md
585
- arguments:
586
- - name: type
587
- values: [market, technical, domain, competitive]
588
- - name: topic
589
- required: true
590
-
591
- unit-docs:
592
- description: Document module/domain/service/feature using Universal Unit format
593
- agent: architect
594
- file: commands/unit-docs.md
595
- arguments:
596
- - name: unit-type
597
- values: [module, domain, service, entity, feature]
598
- - name: unit-name
599
- required: true
600
- skills_loaded: [unit-writing]
601
-
602
- change:
603
- description: Manage documentation changes
604
- agent: change-manager
605
- file: commands/change.md
606
- arguments:
607
- - name: action
608
- values: [propose, review, apply, reject]
609
-
610
478
  # =============================================================================
611
479
  # ARTIFACTS
612
480
  # =============================================================================