claude-code-workflow 6.3.11 → 6.3.13

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 (33) hide show
  1. package/.claude/CLAUDE.md +33 -33
  2. package/.claude/agents/issue-plan-agent.md +77 -5
  3. package/.claude/agents/issue-queue-agent.md +122 -18
  4. package/.claude/commands/issue/execute.md +53 -40
  5. package/.claude/commands/issue/new.md +113 -11
  6. package/.claude/commands/issue/plan.md +112 -37
  7. package/.claude/commands/issue/queue.md +28 -18
  8. package/.claude/skills/software-manual/scripts/assemble_docsify.py +584 -0
  9. package/.claude/skills/software-manual/templates/css/docsify-base.css +984 -0
  10. package/.claude/skills/software-manual/templates/docsify-shell.html +466 -0
  11. package/.claude/workflows/cli-templates/schemas/issues-jsonl-schema.json +141 -168
  12. package/.claude/workflows/cli-templates/schemas/solution-schema.json +3 -2
  13. package/.codex/prompts/issue-execute.md +3 -3
  14. package/.codex/prompts/issue-queue.md +3 -3
  15. package/ccw/dist/commands/issue.d.ts.map +1 -1
  16. package/ccw/dist/commands/issue.js +2 -1
  17. package/ccw/dist/commands/issue.js.map +1 -1
  18. package/ccw/src/commands/issue.ts +2 -1
  19. package/ccw/src/templates/dashboard-css/33-cli-stream-viewer.css +580 -467
  20. package/ccw/src/templates/dashboard-js/components/cli-stream-viewer.js +532 -461
  21. package/ccw/src/templates/dashboard-js/components/notifications.js +774 -774
  22. package/ccw/src/templates/dashboard-js/i18n.js +4 -0
  23. package/ccw/src/templates/dashboard.html +10 -0
  24. package/ccw/src/tools/claude-cli-tools.ts +388 -388
  25. package/codex-lens/src/codexlens/__pycache__/config.cpython-313.pyc +0 -0
  26. package/codex-lens/src/codexlens/config.py +19 -3
  27. package/codex-lens/src/codexlens/search/__pycache__/ranking.cpython-313.pyc +0 -0
  28. package/codex-lens/src/codexlens/search/ranking.py +15 -4
  29. package/codex-lens/src/codexlens/semantic/__pycache__/vector_store.cpython-313.pyc +0 -0
  30. package/codex-lens/src/codexlens/semantic/vector_store.py +57 -47
  31. package/codex-lens/src/codexlens/storage/__pycache__/registry.cpython-313.pyc +0 -0
  32. package/codex-lens/src/codexlens/storage/registry.py +114 -101
  33. package/package.json +83 -83
@@ -55,6 +55,8 @@ const i18n = {
55
55
  'cliStream.close': 'Close',
56
56
  'cliStream.cannotCloseRunning': 'Cannot close running execution',
57
57
  'cliStream.lines': 'lines',
58
+ 'cliStream.searchPlaceholder': 'Search output...',
59
+ 'cliStream.filterResults': 'results',
58
60
 
59
61
  // Sidebar - Project section
60
62
  'nav.project': 'Project',
@@ -1975,6 +1977,8 @@ const i18n = {
1975
1977
  'cliStream.close': '关闭',
1976
1978
  'cliStream.cannotCloseRunning': '无法关闭运行中的执行',
1977
1979
  'cliStream.lines': '行',
1980
+ 'cliStream.searchPlaceholder': '搜索输出...',
1981
+ 'cliStream.filterResults': '条结果',
1978
1982
 
1979
1983
  // Sidebar - Project section
1980
1984
  'nav.project': '项目',
@@ -618,6 +618,16 @@
618
618
  <span data-i18n="cliStream.title">CLI Stream</span>
619
619
  <span class="cli-stream-count-badge" id="cliStreamCountBadge">0</span>
620
620
  </div>
621
+ <div class="cli-stream-search">
622
+ <i data-lucide="search" class="cli-stream-search-icon"></i>
623
+ <input type="text"
624
+ id="cliStreamSearchInput"
625
+ class="cli-stream-search-input"
626
+ placeholder="Search output..."
627
+ oninput="handleSearchInput(event)"
628
+ data-i18n-placeholder="cliStream.searchPlaceholder">
629
+ <button class="cli-stream-search-clear" onclick="clearSearch()" title="Clear search">&times;</button>
630
+ </div>
621
631
  <div class="cli-stream-actions">
622
632
  <button class="cli-stream-action-btn" onclick="clearCompletedStreams()" data-i18n="cliStream.clearCompleted">
623
633
  <i data-lucide="trash-2"></i>