@pennyfarthing/core 11.3.7 → 11.4.0
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 +1 -1
- package/package.json +17 -16
- package/packages/core/dist/public/css/react.css +1 -1
- package/packages/core/dist/public/js/react/react.js +24 -24
- package/packages/core/src/public/App.tsx +356 -0
- package/packages/core/src/public/components/AgentLoadDialog.tsx +202 -0
- package/packages/core/src/public/components/AgentPopup.tsx +308 -0
- package/packages/core/src/public/components/ApprovalModal/ApprovalModal.css +35 -0
- package/packages/core/src/public/components/ApprovalModal/index.tsx +632 -0
- package/packages/core/src/public/components/BikeRackIndex.tsx +53 -0
- package/packages/core/src/public/components/BikeRackWorkspace.tsx +217 -0
- package/packages/core/src/public/components/CommandPalette.tsx +554 -0
- package/packages/core/src/public/components/ConfirmDialog.tsx +168 -0
- package/packages/core/src/public/components/ContextIndicator/ContextIndicator.css +85 -0
- package/packages/core/src/public/components/ContextIndicator/index.tsx +330 -0
- package/packages/core/src/public/components/ContextSparkline.tsx +56 -0
- package/packages/core/src/public/components/ControlBar.tsx +636 -0
- package/packages/core/src/public/components/DeadCodeDialog.tsx +169 -0
- package/packages/core/src/public/components/DiffViewer.tsx +585 -0
- package/packages/core/src/public/components/DockviewWorkspace.tsx +749 -0
- package/packages/core/src/public/components/Editor.tsx +630 -0
- package/packages/core/src/public/components/ErrorBoundary.tsx +67 -0
- package/packages/core/src/public/components/FileTree.tsx +379 -0
- package/packages/core/src/public/components/FontPicker/FontPicker.css +276 -0
- package/packages/core/src/public/components/FontPicker/index.tsx +430 -0
- package/packages/core/src/public/components/FullFileTree.tsx +237 -0
- package/packages/core/src/public/components/HealthGauge.tsx +181 -0
- package/packages/core/src/public/components/Message.tsx +225 -0
- package/packages/core/src/public/components/MessageList.tsx +98 -0
- package/packages/core/src/public/components/MessageView.tsx +400 -0
- package/packages/core/src/public/components/ModeSwitch/ModeSwitch.css +165 -0
- package/packages/core/src/public/components/ModeSwitch/index.tsx +372 -0
- package/packages/core/src/public/components/PersonaHeader.tsx +242 -0
- package/packages/core/src/public/components/ProjectInfoBar.tsx +45 -0
- package/packages/core/src/public/components/QuickActions.tsx +267 -0
- package/packages/core/src/public/components/SpanTimeline.tsx +352 -0
- package/packages/core/src/public/components/StandalonePanel.tsx +82 -0
- package/packages/core/src/public/components/StatsStrip.tsx +162 -0
- package/packages/core/src/public/components/StreamingContent.tsx +77 -0
- package/packages/core/src/public/components/SubagentSpan.tsx +180 -0
- package/packages/core/src/public/components/TandemPortrait.tsx +72 -0
- package/packages/core/src/public/components/ThemePalette/ThemePalette.css +179 -0
- package/packages/core/src/public/components/ThemePalette/index.tsx +326 -0
- package/packages/core/src/public/components/ToolCallBlock.tsx +252 -0
- package/packages/core/src/public/components/ToolStack.tsx +209 -0
- package/packages/core/src/public/components/ToolStatus.tsx +57 -0
- package/packages/core/src/public/components/dialogs/CodeMarkersDialog.tsx +169 -0
- package/packages/core/src/public/components/dialogs/ComplexityDialog.tsx +163 -0
- package/packages/core/src/public/components/dialogs/DependenciesDialog.tsx +120 -0
- package/packages/core/src/public/components/dialogs/HotspotsDialog.tsx +451 -0
- package/packages/core/src/public/components/dialogs/ToolDialog.tsx +43 -0
- package/packages/core/src/public/components/panel-registry.ts +13 -0
- package/packages/core/src/public/components/panels/ACPanel.tsx +93 -0
- package/packages/core/src/public/components/panels/AcceptanceCriteriaPanel.tsx +104 -0
- package/packages/core/src/public/components/panels/AuditLogPanel.tsx +489 -0
- package/packages/core/src/public/components/panels/BackgroundPanel.tsx +115 -0
- package/packages/core/src/public/components/panels/BikeLanePanel.tsx +214 -0
- package/packages/core/src/public/components/panels/DebugPanel.tsx +344 -0
- package/packages/core/src/public/components/panels/DiffView.tsx +109 -0
- package/packages/core/src/public/components/panels/DiffsPanel.tsx +56 -0
- package/packages/core/src/public/components/panels/GitPanel.tsx +260 -0
- package/packages/core/src/public/components/panels/HotspotsPanel.tsx +365 -0
- package/packages/core/src/public/components/panels/MessageFeed.tsx +39 -0
- package/packages/core/src/public/components/panels/MessagePanel.tsx +497 -0
- package/packages/core/src/public/components/panels/ProgressPanel.tsx +189 -0
- package/packages/core/src/public/components/panels/SettingsPanel.tsx +361 -0
- package/packages/core/src/public/components/panels/SprintPanel.tsx +723 -0
- package/packages/core/src/public/components/panels/TandemPanel.tsx +104 -0
- package/packages/core/src/public/components/panels/TaskTracker.tsx +48 -0
- package/packages/core/src/public/components/panels/TeamPanel.tsx +64 -0
- package/packages/core/src/public/components/panels/TeamRoster.tsx +67 -0
- package/packages/core/src/public/components/panels/TodoPanel.tsx +142 -0
- package/packages/core/src/public/components/panels/WorkflowPanel.tsx +224 -0
- package/packages/core/src/public/components/panels/index.ts +24 -0
- package/packages/core/src/public/components/ui/alert-dialog.tsx +139 -0
- package/packages/core/src/public/components/ui/badge.tsx +36 -0
- package/packages/core/src/public/components/ui/button.tsx +57 -0
- package/packages/core/src/public/components/ui/checkbox.tsx +28 -0
- package/packages/core/src/public/components/ui/collapsible.tsx +9 -0
- package/packages/core/src/public/components/ui/command.tsx +151 -0
- package/packages/core/src/public/components/ui/dialog.tsx +120 -0
- package/packages/core/src/public/components/ui/popover.tsx +31 -0
- package/packages/core/src/public/components/ui/progress.tsx +28 -0
- package/packages/core/src/public/components/ui/scroll-area.tsx +46 -0
- package/packages/core/src/public/components/ui/select.tsx +157 -0
- package/packages/core/src/public/components/ui/separator.tsx +29 -0
- package/packages/core/src/public/components/ui/skeleton.tsx +15 -0
- package/packages/core/src/public/components/ui/switch.tsx +27 -0
- package/packages/core/src/public/components/ui/toggle-group.tsx +59 -0
- package/packages/core/src/public/components/ui/toggle.tsx +43 -0
- package/packages/core/src/public/components/ui/tooltip.tsx +30 -0
- package/packages/core/src/public/contexts/ClaudeContext.tsx +311 -0
- package/packages/core/src/public/contexts/MessageQueueContext.tsx +143 -0
- package/packages/core/src/public/css/theme-browser.css +550 -0
- package/packages/core/src/public/css/theme-system.css +630 -0
- package/packages/core/src/public/hooks/index.ts +49 -0
- package/packages/core/src/public/hooks/useAgentLoad.ts +105 -0
- package/packages/core/src/public/hooks/useBackgroundTasks.ts +131 -0
- package/packages/core/src/public/hooks/useClaude.ts +234 -0
- package/packages/core/src/public/hooks/useCodeMarkers.ts +101 -0
- package/packages/core/src/public/hooks/useColorScheme.ts +42 -0
- package/packages/core/src/public/hooks/useCommandHistory.ts +99 -0
- package/packages/core/src/public/hooks/useComplexity.ts +80 -0
- package/packages/core/src/public/hooks/useDeadCode.ts +99 -0
- package/packages/core/src/public/hooks/useDependencies.ts +82 -0
- package/packages/core/src/public/hooks/useDiffs.ts +143 -0
- package/packages/core/src/public/hooks/useFileBrowser.ts +73 -0
- package/packages/core/src/public/hooks/useFocusPanel.ts +137 -0
- package/packages/core/src/public/hooks/useGitStatus.ts +233 -0
- package/packages/core/src/public/hooks/useHealthScore.ts +71 -0
- package/packages/core/src/public/hooks/useHotspots.ts +123 -0
- package/packages/core/src/public/hooks/useLayoutPersistence.ts +141 -0
- package/packages/core/src/public/hooks/useMarkdownParser.ts +36 -0
- package/packages/core/src/public/hooks/useMarkerActions.ts +234 -0
- package/packages/core/src/public/hooks/useMessageQueue.ts +380 -0
- package/packages/core/src/public/hooks/useMessageStream.ts +131 -0
- package/packages/core/src/public/hooks/usePersona.ts +112 -0
- package/packages/core/src/public/hooks/usePlanModeExit.ts +105 -0
- package/packages/core/src/public/hooks/useResponsiveLayout.ts +173 -0
- package/packages/core/src/public/hooks/useSprint.ts +157 -0
- package/packages/core/src/public/hooks/useStatsStrip.ts +204 -0
- package/packages/core/src/public/hooks/useStory.ts +135 -0
- package/packages/core/src/public/hooks/useSubagentHelper.ts +64 -0
- package/packages/core/src/public/hooks/useSyntaxHighlighter.ts +52 -0
- package/packages/core/src/public/hooks/useTabCompletion.ts +124 -0
- package/packages/core/src/public/hooks/useTandemObservations.ts +165 -0
- package/packages/core/src/public/hooks/useTeamMembers.ts +273 -0
- package/packages/core/src/public/hooks/useTodos.ts +93 -0
- package/packages/core/src/public/hooks/useUserAvatar.ts +54 -0
- package/packages/core/src/public/images/cyclist-dark.png +0 -0
- package/packages/core/src/public/images/cyclist-light.png +0 -0
- package/packages/core/src/public/index.html +14 -0
- package/packages/core/src/public/index.tsx +10 -0
- package/packages/core/src/public/lib/utils.ts +6 -0
- package/packages/core/src/public/styles/dockview-theme.css +376 -0
- package/packages/core/src/public/styles/tailwind.css +4454 -0
- package/packages/core/src/public/types/message.ts +51 -0
- package/packages/core/src/public/utils/avatar-service.ts +73 -0
- package/packages/core/src/public/utils/color-presets.ts +940 -0
- package/packages/core/src/public/utils/font-presets.ts +362 -0
- package/packages/core/src/public/utils/formatDuration.ts +14 -0
- package/packages/core/src/public/utils/markdown.ts +249 -0
- package/packages/core/src/public/utils/messageFilters.ts +128 -0
- package/packages/core/src/public/utils/slash-commands.ts +341 -0
- package/packages/core/src/public/utils/subagent-display.ts +146 -0
- package/packages/core/src/public/utils/syntax.ts +219 -0
- package/packages/core/src/public/utils/toolIntentSummarizer.ts +199 -0
- package/packages/core/src/public/utils/toolStackGrouper.ts +106 -0
- package/packages/core/src/public/utils/toolTypeColors.ts +45 -0
- package/pennyfarthing-dist/pf/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/__pycache__/context.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bc/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bc/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bc/__pycache__/focus.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bc/__pycache__/split.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bc/cli.py +0 -1
- package/pennyfarthing-dist/pf/bc/focus.py +0 -1
- package/pennyfarthing-dist/pf/bikerack/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bikerack/__pycache__/base_panel.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bikerack/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bikerack/__pycache__/git_panel.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bikerack/__pycache__/launcher.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bikerack/__pycache__/portrait_resolver.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bikerack/__pycache__/sprint_panel.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bikerack/__pycache__/story_detail_data.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bikerack/__pycache__/story_detail_screen.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bikerack/__pycache__/tui.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bikerack/base_panel.py +0 -1
- package/pennyfarthing-dist/pf/bikerack/events.py +1 -7
- package/pennyfarthing-dist/pf/bikerack/git_panel.py +273 -10
- package/pennyfarthing-dist/pf/bikerack/portrait_resolver.py +21 -0
- package/pennyfarthing-dist/pf/bikerack/sprint_panel.py +58 -1
- package/pennyfarthing-dist/pf/bikerack/tui.py +5 -20
- package/pennyfarthing-dist/pf/bmad/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bmad/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bmad/__pycache__/parser.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/bmad/parser.py +15 -9
- package/pennyfarthing-dist/pf/codemarkers/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/codemarkers/__pycache__/analyze.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/codemarkers/__pycache__/models.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/common/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/common/__pycache__/config.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/common/__pycache__/output.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/common/__pycache__/pr_config.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/common/__pycache__/themes.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/common/pr_config.py +27 -2
- package/pennyfarthing-dist/pf/complexity/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/complexity/__pycache__/analyze.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/complexity/__pycache__/models.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/consultation/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/consultation/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/deadcode/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/deadcode/__pycache__/analyze.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/deadcode/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/deadcode/__pycache__/models.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/dependencies/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/dependencies/__pycache__/analyze.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/dependencies/__pycache__/models.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/epic/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/epic/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/git_group/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/git_group/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/handoff/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/handoff/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/handoff/__pycache__/complete_phase.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/handoff/__pycache__/marker.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/handoff/__pycache__/phase_check.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/handoff/__pycache__/resolve_gate.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/healthscore/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/healthscore/__pycache__/__main__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/healthscore/__pycache__/analyze.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/healthscore/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/healthscore/__pycache__/formatters.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/healthscore/__pycache__/models.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/bell_mode.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/context_breaker.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/context_warning.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/cyclist_pretooluse.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/pre_edit_check.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/reflector_check.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/schema_validation.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/session_start.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/session_stop.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/sprint_yaml_validation.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/__pycache__/statusline.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hooks/cyclist-pretooluse-hook.sh +0 -0
- package/pennyfarthing-dist/pf/hotspots/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hotspots/__pycache__/analyze.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hotspots/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/hotspots/__pycache__/models.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/jira/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/jira/__pycache__/bidirectional.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/jira/__pycache__/claim.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/jira/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/jira/__pycache__/client.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/jira/__pycache__/create.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/jira/__pycache__/epic.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/jira/__pycache__/operations.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/jira/__pycache__/reconcile.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/jira/__pycache__/story.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/jira/__pycache__/sync.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/launch/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/launch/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/prime/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/prime/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/prime/__pycache__/loader.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/prime/__pycache__/models.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/prime/__pycache__/persona.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/prime/__pycache__/session.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/prime/__pycache__/tiers.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/prime/__pycache__/workflow.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/session/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/session/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/settings/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/settings/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/settings/__pycache__/settings.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/settings/settings.py +44 -8
- package/pennyfarthing-dist/pf/sprint/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/archive.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/archive_epic.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/epic_add.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/epic_update.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/loader.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/status.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/story_add.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/story_finish.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/story_update.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/validate_cmd.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/validator.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/work.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/__pycache__/yaml_io.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/sprint/story_finish.py +14 -2
- package/pennyfarthing-dist/pf/sprint/validator.py +7 -7
- package/pennyfarthing-dist/pf/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- package/pennyfarthing-dist/pf/tests/__pycache__/test_sprint_validator.cpython-314-pytest-9.0.2.pyc +0 -0
- package/pennyfarthing-dist/pf/tests/test_sprint_validator.py +44 -0
- package/pennyfarthing-dist/pf/theme/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/theme/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/validate/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/validate/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/workflow/__pycache__/__init__.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/workflow/__pycache__/cli.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/workflow/__pycache__/helpers.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/workflow/__pycache__/scale.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/pf/workflow/__pycache__/state.cpython-314.pyc +0 -0
- package/pennyfarthing-dist/scripts/core/agent-session.sh +0 -0
- package/pennyfarthing-dist/scripts/core/check-context.sh +0 -0
- package/pennyfarthing-dist/scripts/core/dialogue-manager.sh +0 -0
- package/pennyfarthing-dist/scripts/core/pf.sh +0 -0
- package/pennyfarthing-dist/scripts/core/phase-check-start.sh +0 -0
- package/pennyfarthing-dist/scripts/core/prime.sh +0 -0
- package/pennyfarthing-dist/scripts/cyclist/is-cyclist.sh +0 -0
- package/pennyfarthing-dist/scripts/git/create-feature-branches.sh +0 -0
- package/pennyfarthing-dist/scripts/git/git-status-all.sh +0 -0
- package/pennyfarthing-dist/scripts/git/install-git-hooks.sh +0 -0
- package/pennyfarthing-dist/scripts/git/release.sh +0 -0
- package/pennyfarthing-dist/scripts/git/worktree-manager.sh +0 -0
- package/pennyfarthing-dist/scripts/health/drift-detection.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/bell-mode-hook.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/context-circuit-breaker.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/context-warning.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/cyclist-pretooluse-hook.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/dispatcher-template.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/otel-auto-config.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/post-merge.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/pre-commit.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/pre-edit-check.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/pre-push.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/question-reflector-check.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/question_reflector_check.py +0 -0
- package/pennyfarthing-dist/scripts/hooks/schema-validation.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/session-start.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/session-stop.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/sprint-yaml-validation.sh +0 -0
- package/pennyfarthing-dist/scripts/hooks/welcome-hook.sh +0 -0
- package/pennyfarthing-dist/scripts/jira/create-jira-epic.sh +0 -0
- package/pennyfarthing-dist/scripts/jira/create-jira-story.sh +0 -0
- package/pennyfarthing-dist/scripts/jira/jira-claim-story.sh +0 -0
- package/pennyfarthing-dist/scripts/jira/jira-reconcile.sh +0 -0
- package/pennyfarthing-dist/scripts/jira/jira-sync-story.sh +0 -0
- package/pennyfarthing-dist/scripts/jira/sync-epic-jira.sh +0 -0
- package/pennyfarthing-dist/scripts/lib/background-tasks.sh +0 -0
- package/pennyfarthing-dist/scripts/lib/checkpoint.sh +0 -0
- package/pennyfarthing-dist/scripts/lib/common.sh +0 -0
- package/pennyfarthing-dist/scripts/lib/env.sh +0 -0
- package/pennyfarthing-dist/scripts/lib/file-lock.sh +0 -0
- package/pennyfarthing-dist/scripts/lib/find-root.sh +1 -1
- package/pennyfarthing-dist/scripts/lib/logging.sh +0 -0
- package/pennyfarthing-dist/scripts/lib/retry.sh +0 -0
- package/pennyfarthing-dist/scripts/lib/run-pf.sh +0 -0
- package/pennyfarthing-dist/scripts/maintenance/migrate-theme-schema.mjs +0 -0
- package/pennyfarthing-dist/scripts/maintenance/sidecar-health.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/add-short-names.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/add_short_names.py +0 -0
- package/pennyfarthing-dist/scripts/misc/backlog.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/check-status.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/find-related-work.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/generate-skill-docs.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/log-skill-usage.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/migrate-bmad-workflow.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/migrate_bmad_workflow.py +0 -1
- package/pennyfarthing-dist/scripts/misc/repo-scan.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/repo-utils.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/run-ci.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/run-timestamp.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/session-cleanup.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/skill-usage-report.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/statusline.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/uninstall.sh +0 -0
- package/pennyfarthing-dist/scripts/misc/validate-subagent-frontmatter.sh +0 -0
- package/pennyfarthing-dist/scripts/portraits/generate-portraits.py +13 -13
- package/pennyfarthing-dist/scripts/portraits/generate-portraits.sh +0 -0
- package/pennyfarthing-dist/scripts/portraits/generate-tandem-portraits.sh +0 -0
- package/pennyfarthing-dist/scripts/story/create-story.sh +0 -0
- package/pennyfarthing-dist/scripts/story/size-story.sh +0 -0
- package/pennyfarthing-dist/scripts/story/story-template.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/check.test.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/dev-story-workflow-import.test.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/epics-and-stories-workflow-import.test.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/handoff-phase-update.test.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/implementation-readiness-workflow-import.test.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/migrate-bmad-workflow.test.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/prd-workflow-import.test.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/project-context-workflow-import.test.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/test-character-voice.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/test-drift-detection.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/test-post-merge-hook.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/test-session-checkpoint.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/test-solo-command.sh +0 -0
- package/pennyfarthing-dist/scripts/tests/ux-design-workflow-import.test.sh +0 -0
- package/pennyfarthing-dist/scripts/theme/list-themes.sh +0 -0
- package/pennyfarthing-dist/scripts/validation/validate-agent-schema.sh +0 -0
- package/pennyfarthing-dist/scripts/workflow/check.py +4 -6
- package/pennyfarthing-dist/scripts/workflow/check.sh +0 -0
- package/pennyfarthing-dist/scripts/workflow/complete-step.py +2 -2
- package/pennyfarthing-dist/scripts/workflow/finish-story.sh +0 -0
- package/pennyfarthing-dist/scripts/workflow/fix-session-phase.sh +0 -0
- package/pennyfarthing-dist/scripts/workflow/get-workflow-type.py +0 -0
- package/pennyfarthing-dist/scripts/workflow/get-workflow-type.sh +0 -0
- package/pennyfarthing-dist/scripts/workflow/list-workflows.sh +0 -0
- package/pennyfarthing-dist/scripts/workflow/phase-owner.sh +0 -0
- package/pennyfarthing-dist/scripts/workflow/resume-workflow.sh +0 -0
- package/pennyfarthing-dist/scripts/workflow/show-workflow.sh +0 -0
- package/pennyfarthing-dist/scripts/workflow/start-workflow.sh +0 -0
- package/pennyfarthing-dist/scripts/workflow/workflow-status.sh +0 -0
- package/pennyfarthing-dist/skills/pf-story/scripts/create-story.sh +0 -0
- package/pennyfarthing-dist/skills/pf-story/scripts/size-story.sh +0 -0
- package/pennyfarthing-dist/skills/pf-story/scripts/story-template.sh +0 -0
- package/pennyfarthing-dist/skills/skill-registry.yaml +19 -0
- package/pennyfarthing-dist/workflows/release/steps/step-10-publish.md +41 -9
- package/pennyfarthing-dist/workflows/tdd-tandem.yaml +15 -2
- package/packages/core/dist/workflow/__test_context_watch__/.session/.tandem-turn-counter +0 -1
- package/packages/core/dist/workflow/__test_context_watch__/.session/95-6-session.md +0 -3
- package/packages/core/dist/workflow/__test_context_watch__/.session/95-6-tandem-architect.md +0 -6
- package/packages/core/dist/workflow/__test_file_watch__/.session/95-4-tandem-architect.md +0 -6
- package/packages/core/dist/workflow/__test_file_watch__/workdir/trigger.ts +0 -1
- package/packages/core/dist/workflow/__test_tool_watch__/.session/95-5-tandem-architect.md +0 -6
- package/packages/core/dist/workflow/__test_tool_watch__/.session/95-5-tandem-toolcalls.jsonl +0 -1
- package/pennyfarthing-dist/pf/bikerack/changed_panel.py +0 -201
- package/scripts/README.md +0 -41
|
@@ -0,0 +1,630 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Theme System CSS
|
|
3
|
+
*
|
|
4
|
+
* Defines CSS custom properties for the color theme system.
|
|
5
|
+
* These variables are updated dynamically when themes are applied.
|
|
6
|
+
*
|
|
7
|
+
* Story 35-7: Custom Styling Themes
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/* =============================================================================
|
|
11
|
+
Root CSS Custom Properties (Default Dark Theme)
|
|
12
|
+
============================================================================= */
|
|
13
|
+
|
|
14
|
+
:root {
|
|
15
|
+
/* Font Settings (Story 35-6, MSSCI-12769) */
|
|
16
|
+
--font-ui: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
17
|
+
--font-mono: 'SF Mono', Monaco, 'Inconsolata', 'Fira Code', monospace;
|
|
18
|
+
--font-size-ui: 1rem;
|
|
19
|
+
--font-size-code: 1rem;
|
|
20
|
+
|
|
21
|
+
/* UI Colors */
|
|
22
|
+
--bg-primary: #1a1a2e;
|
|
23
|
+
--bg-secondary: #16213e;
|
|
24
|
+
--bg-tertiary: #0f0f1a;
|
|
25
|
+
--text-primary: #e4e4e7;
|
|
26
|
+
--text-secondary: #a1a1aa;
|
|
27
|
+
--text-muted: #71717a;
|
|
28
|
+
--accent: #4f46e5;
|
|
29
|
+
--accent-hover: #6366f1;
|
|
30
|
+
--border: #27272a;
|
|
31
|
+
--border-focus: #4f46e5;
|
|
32
|
+
--shadow: rgba(0,0,0,0.3);
|
|
33
|
+
|
|
34
|
+
/* Panel Colors */
|
|
35
|
+
--sidebar-bg: #16213e;
|
|
36
|
+
--message-bg: #1a1a2e;
|
|
37
|
+
--tool-bg: #0f0f1a;
|
|
38
|
+
--header-bg: #16213e;
|
|
39
|
+
--footer-bg: #16213e;
|
|
40
|
+
|
|
41
|
+
/* Status Colors */
|
|
42
|
+
--status-success: #22c55e;
|
|
43
|
+
--status-warning: #eab308;
|
|
44
|
+
--status-error: #ef4444;
|
|
45
|
+
--status-info: #3b82f6;
|
|
46
|
+
|
|
47
|
+
/* Tool Type Colors (MSSCI-13402) */
|
|
48
|
+
--tool-read-color: #3b82f6; /* blue */
|
|
49
|
+
--tool-write-color: #f97316; /* orange */
|
|
50
|
+
--tool-bash-color: #22c55e; /* green */
|
|
51
|
+
--tool-glob-color: #a855f7; /* purple */
|
|
52
|
+
--tool-grep-color: #06b6d4; /* cyan */
|
|
53
|
+
--tool-edit-color: #eab308; /* yellow */
|
|
54
|
+
--tool-task-color: #ec4899; /* pink */
|
|
55
|
+
--tool-default-color: #6b7280; /* gray */
|
|
56
|
+
|
|
57
|
+
/* Terminal Colors */
|
|
58
|
+
--terminal-background: #0f0f1a;
|
|
59
|
+
--terminal-foreground: #e4e4e7;
|
|
60
|
+
--terminal-cursor: #e4e4e7;
|
|
61
|
+
--terminal-cursor-accent: #0f0f1a;
|
|
62
|
+
--terminal-selection-background: #4f46e5;
|
|
63
|
+
--terminal-black: #1a1a2e;
|
|
64
|
+
--terminal-red: #ff6b6b;
|
|
65
|
+
--terminal-green: #69db7c;
|
|
66
|
+
--terminal-yellow: #ffd43b;
|
|
67
|
+
--terminal-blue: #4f46e5;
|
|
68
|
+
--terminal-magenta: #cc5de8;
|
|
69
|
+
--terminal-cyan: #22b8cf;
|
|
70
|
+
--terminal-white: #e4e4e7;
|
|
71
|
+
--terminal-bright-black: #52525b;
|
|
72
|
+
--terminal-bright-red: #ff8787;
|
|
73
|
+
--terminal-bright-green: #8ce99a;
|
|
74
|
+
--terminal-bright-yellow: #ffe066;
|
|
75
|
+
--terminal-bright-blue: #748ffc;
|
|
76
|
+
--terminal-bright-magenta: #da77f2;
|
|
77
|
+
--terminal-bright-cyan: #66d9e8;
|
|
78
|
+
--terminal-bright-white: #fafafa;
|
|
79
|
+
|
|
80
|
+
/* Syntax Highlighting Colors */
|
|
81
|
+
--syntax-keyword: #c678dd;
|
|
82
|
+
--syntax-string: #98c379;
|
|
83
|
+
--syntax-number: #d19a66;
|
|
84
|
+
--syntax-comment: #5c6370;
|
|
85
|
+
--syntax-function: #61afef;
|
|
86
|
+
--syntax-variable: #e06c75;
|
|
87
|
+
--syntax-type: #e5c07b;
|
|
88
|
+
--syntax-operator: #56b6c2;
|
|
89
|
+
--syntax-punctuation: #abb2bf;
|
|
90
|
+
--syntax-tag: #e06c75;
|
|
91
|
+
--syntax-attribute: #d19a66;
|
|
92
|
+
--syntax-property: #61afef;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/* =============================================================================
|
|
96
|
+
Theme Application Helpers
|
|
97
|
+
============================================================================= */
|
|
98
|
+
|
|
99
|
+
/* Transition for smooth theme switching */
|
|
100
|
+
.theme-transition,
|
|
101
|
+
.theme-transition *,
|
|
102
|
+
.theme-transition *::before,
|
|
103
|
+
.theme-transition *::after {
|
|
104
|
+
transition: background-color 0.3s ease,
|
|
105
|
+
border-color 0.3s ease,
|
|
106
|
+
color 0.3s ease !important;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/* =============================================================================
|
|
110
|
+
Utility Classes for Theme Colors
|
|
111
|
+
|
|
112
|
+
NOTE: .bg-primary, .text-secondary, .text-muted etc. are generated by
|
|
113
|
+
Tailwind from tailwind.config.js. Do NOT duplicate them here — specificity
|
|
114
|
+
conflicts cause unpredictable results. Only define classes that Tailwind
|
|
115
|
+
does NOT generate (status colors, border-default, border-focus).
|
|
116
|
+
============================================================================= */
|
|
117
|
+
|
|
118
|
+
/* Status */
|
|
119
|
+
.text-success { color: var(--status-success); }
|
|
120
|
+
.text-warning { color: var(--status-warning); }
|
|
121
|
+
.text-error { color: var(--status-error); }
|
|
122
|
+
.text-info { color: var(--status-info); }
|
|
123
|
+
|
|
124
|
+
/* Borders */
|
|
125
|
+
.border-default { border-color: var(--border); }
|
|
126
|
+
.border-focus { border-color: var(--border-focus); }
|
|
127
|
+
|
|
128
|
+
/* =============================================================================
|
|
129
|
+
Syntax Highlighting
|
|
130
|
+
============================================================================= */
|
|
131
|
+
|
|
132
|
+
.syntax-keyword { color: var(--syntax-keyword); }
|
|
133
|
+
.syntax-string { color: var(--syntax-string); }
|
|
134
|
+
.syntax-number { color: var(--syntax-number); }
|
|
135
|
+
.syntax-comment { color: var(--syntax-comment); }
|
|
136
|
+
.syntax-function { color: var(--syntax-function); }
|
|
137
|
+
.syntax-variable { color: var(--syntax-variable); }
|
|
138
|
+
.syntax-type { color: var(--syntax-type); }
|
|
139
|
+
.syntax-operator { color: var(--syntax-operator); }
|
|
140
|
+
.syntax-punctuation { color: var(--syntax-punctuation); }
|
|
141
|
+
.syntax-tag { color: var(--syntax-tag); }
|
|
142
|
+
.syntax-attribute { color: var(--syntax-attribute); }
|
|
143
|
+
.syntax-property { color: var(--syntax-property); }
|
|
144
|
+
|
|
145
|
+
/* =============================================================================
|
|
146
|
+
Tool Call Block Styling (MSSCI-13402) - Klinger Redesign
|
|
147
|
+
============================================================================= */
|
|
148
|
+
|
|
149
|
+
/* Base tool call block — Tufte: indented, no border box */
|
|
150
|
+
.tool-call-block {
|
|
151
|
+
background: none;
|
|
152
|
+
border-radius: 0;
|
|
153
|
+
border: none;
|
|
154
|
+
border-left: 2px solid var(--border);
|
|
155
|
+
overflow: hidden;
|
|
156
|
+
margin-left: 2.75rem; /* align with message content (avatar + gap) */
|
|
157
|
+
margin-top: 0.5rem;
|
|
158
|
+
margin-bottom: 0.5rem;
|
|
159
|
+
padding-left: 0.5rem;
|
|
160
|
+
transition: border-color 0.15s ease;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.tool-call-block:hover {
|
|
164
|
+
border-left-color: var(--accent);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/* Tool Header - compact single-line */
|
|
168
|
+
.tool-header {
|
|
169
|
+
display: flex;
|
|
170
|
+
align-items: center;
|
|
171
|
+
gap: 0.5rem;
|
|
172
|
+
padding: 0.125rem 0;
|
|
173
|
+
background: none;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
/* Tool Type Badge - colored pill for instant recognition */
|
|
177
|
+
.tool-type-badge {
|
|
178
|
+
display: inline-flex;
|
|
179
|
+
align-items: center;
|
|
180
|
+
justify-content: center;
|
|
181
|
+
min-width: 1.5rem;
|
|
182
|
+
height: 1.5rem;
|
|
183
|
+
padding: 0 0.375rem;
|
|
184
|
+
border-radius: 4px;
|
|
185
|
+
font-size: 0.6875rem;
|
|
186
|
+
font-weight: 700;
|
|
187
|
+
font-family: var(--font-mono);
|
|
188
|
+
text-transform: uppercase;
|
|
189
|
+
color: white;
|
|
190
|
+
flex-shrink: 0;
|
|
191
|
+
background-color: var(--tool-default-color);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/* Badge colors by tool type */
|
|
195
|
+
.tool-call-block.tool-read .tool-type-badge { background-color: var(--tool-read-color); }
|
|
196
|
+
.tool-call-block.tool-write .tool-type-badge { background-color: var(--tool-write-color); }
|
|
197
|
+
.tool-call-block.tool-bash .tool-type-badge { background-color: var(--tool-bash-color); }
|
|
198
|
+
.tool-call-block.tool-glob .tool-type-badge { background-color: var(--tool-glob-color); }
|
|
199
|
+
.tool-call-block.tool-grep .tool-type-badge { background-color: var(--tool-grep-color); }
|
|
200
|
+
.tool-call-block.tool-edit .tool-type-badge { background-color: var(--tool-edit-color); }
|
|
201
|
+
.tool-call-block.tool-task .tool-type-badge { background-color: var(--tool-task-color); }
|
|
202
|
+
|
|
203
|
+
/* Color the left border by tool type */
|
|
204
|
+
.tool-call-block.tool-read { border-left-color: var(--tool-read-color); }
|
|
205
|
+
.tool-call-block.tool-write { border-left-color: var(--tool-write-color); }
|
|
206
|
+
.tool-call-block.tool-bash { border-left-color: var(--tool-bash-color); }
|
|
207
|
+
.tool-call-block.tool-glob { border-left-color: var(--tool-glob-color); }
|
|
208
|
+
.tool-call-block.tool-grep { border-left-color: var(--tool-grep-color); }
|
|
209
|
+
.tool-call-block.tool-edit { border-left-color: var(--tool-edit-color); }
|
|
210
|
+
.tool-call-block.tool-task { border-left-color: var(--tool-task-color); }
|
|
211
|
+
|
|
212
|
+
/* Intent summary - the human-readable description */
|
|
213
|
+
.tool-name {
|
|
214
|
+
flex: 1;
|
|
215
|
+
min-width: 0;
|
|
216
|
+
font-size: 0.8125rem;
|
|
217
|
+
color: var(--text-primary);
|
|
218
|
+
overflow: hidden;
|
|
219
|
+
text-overflow: ellipsis;
|
|
220
|
+
white-space: nowrap;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
/* Status indicator positioning */
|
|
224
|
+
.tool-status {
|
|
225
|
+
display: flex;
|
|
226
|
+
align-items: center;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
/* Duration display */
|
|
230
|
+
.tool-duration {
|
|
231
|
+
color: var(--text-muted);
|
|
232
|
+
font-size: 0.75rem;
|
|
233
|
+
font-family: var(--font-mono);
|
|
234
|
+
min-width: 3.5rem;
|
|
235
|
+
text-align: right;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
/* Error state styling */
|
|
239
|
+
.tool-call-block.tool-error {
|
|
240
|
+
border-left-color: var(--status-error) !important;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.tool-call-block.tool-error .tool-type-badge {
|
|
244
|
+
background-color: var(--status-error);
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
/* Result section header */
|
|
248
|
+
.tool-result-header {
|
|
249
|
+
display: flex;
|
|
250
|
+
align-items: center;
|
|
251
|
+
gap: 0.5rem;
|
|
252
|
+
padding: 0.125rem 0;
|
|
253
|
+
background: none;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.tool-result-toggle {
|
|
257
|
+
background: none;
|
|
258
|
+
border: none;
|
|
259
|
+
padding: 0.25rem 0.5rem;
|
|
260
|
+
cursor: pointer;
|
|
261
|
+
font-size: 0.75rem;
|
|
262
|
+
color: var(--text-secondary);
|
|
263
|
+
border-radius: 4px;
|
|
264
|
+
transition: background-color 0.15s ease;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.tool-result-toggle:hover {
|
|
268
|
+
background-color: var(--bg-secondary);
|
|
269
|
+
color: var(--text-primary);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.tool-result-copy {
|
|
273
|
+
margin-left: auto;
|
|
274
|
+
background: none;
|
|
275
|
+
border: 1px solid var(--border);
|
|
276
|
+
padding: 0.25rem 0.5rem;
|
|
277
|
+
cursor: pointer;
|
|
278
|
+
font-size: 0.6875rem;
|
|
279
|
+
color: var(--text-muted);
|
|
280
|
+
border-radius: 4px;
|
|
281
|
+
transition: all 0.15s ease;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.tool-result-copy:hover {
|
|
285
|
+
background-color: var(--bg-secondary);
|
|
286
|
+
border-color: var(--accent);
|
|
287
|
+
color: var(--text-primary);
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.tool-result-copy.copied {
|
|
291
|
+
background-color: var(--status-success);
|
|
292
|
+
border-color: var(--status-success);
|
|
293
|
+
color: white;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
/* Result content area */
|
|
297
|
+
.tool-result-content {
|
|
298
|
+
max-height: 300px;
|
|
299
|
+
overflow: auto;
|
|
300
|
+
padding: 0.75rem;
|
|
301
|
+
background-color: var(--bg-tertiary);
|
|
302
|
+
font-family: var(--font-mono);
|
|
303
|
+
font-size: 0.8125rem;
|
|
304
|
+
line-height: 1.5;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.tool-result-content.collapsed {
|
|
308
|
+
display: none;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.tool-result-content pre {
|
|
312
|
+
margin: 0;
|
|
313
|
+
white-space: pre-wrap;
|
|
314
|
+
word-break: break-word;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.tool-result-content.error-content {
|
|
318
|
+
background-color: rgba(239, 68, 68, 0.1);
|
|
319
|
+
border-left: 3px solid var(--status-error);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
/* Truncation expand button */
|
|
323
|
+
.tool-result-expand {
|
|
324
|
+
display: block;
|
|
325
|
+
width: 100%;
|
|
326
|
+
margin-top: 0.5rem;
|
|
327
|
+
padding: 0.375rem;
|
|
328
|
+
background-color: var(--bg-secondary);
|
|
329
|
+
border: 1px dashed var(--border);
|
|
330
|
+
border-radius: 4px;
|
|
331
|
+
color: var(--accent);
|
|
332
|
+
font-size: 0.75rem;
|
|
333
|
+
cursor: pointer;
|
|
334
|
+
text-align: center;
|
|
335
|
+
transition: all 0.15s ease;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.tool-result-expand:hover {
|
|
339
|
+
background-color: var(--bg-tertiary);
|
|
340
|
+
border-color: var(--accent);
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
/* Status indicator styling */
|
|
344
|
+
.tool-status-pending { color: var(--status-warning); }
|
|
345
|
+
.tool-status-success { color: var(--status-success); }
|
|
346
|
+
.tool-status-error { color: var(--status-error); }
|
|
347
|
+
|
|
348
|
+
/* ToolStatus indicator component */
|
|
349
|
+
.tool-status-indicator {
|
|
350
|
+
display: inline-flex;
|
|
351
|
+
align-items: center;
|
|
352
|
+
justify-content: center;
|
|
353
|
+
width: 1.25rem;
|
|
354
|
+
height: 1.25rem;
|
|
355
|
+
border-radius: 50%;
|
|
356
|
+
font-size: 0.75rem;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.tool-status-indicator.status-pending {
|
|
360
|
+
color: var(--status-warning);
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.tool-status-indicator.status-success {
|
|
364
|
+
color: var(--status-success);
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.tool-status-indicator.status-error {
|
|
368
|
+
color: var(--status-error);
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
/* Spinner animation for pending state */
|
|
372
|
+
.tool-status-indicator .spinner {
|
|
373
|
+
width: 0.75rem;
|
|
374
|
+
height: 0.75rem;
|
|
375
|
+
border: 2px solid var(--status-warning);
|
|
376
|
+
border-top-color: transparent;
|
|
377
|
+
border-radius: 50%;
|
|
378
|
+
animation: spin 1s linear infinite;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
@keyframes spin {
|
|
382
|
+
to { transform: rotate(360deg); }
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
/* =============================================================================
|
|
386
|
+
Tool Stack Styling (MSSCI-13400) - Klinger Redesign
|
|
387
|
+
============================================================================= */
|
|
388
|
+
|
|
389
|
+
/* Container for grouped tool calls */
|
|
390
|
+
.tool-stack {
|
|
391
|
+
margin: 0.5rem 0;
|
|
392
|
+
margin-left: 2.75rem; /* align with message content */
|
|
393
|
+
border-radius: 0;
|
|
394
|
+
background: none;
|
|
395
|
+
border: none;
|
|
396
|
+
border-left: 2px solid var(--border);
|
|
397
|
+
padding-left: 0.5rem;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.tool-stack.collapsed {
|
|
401
|
+
/* Header always visible in collapsed state */
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
/* Stack Header - always visible */
|
|
405
|
+
.tool-stack-header {
|
|
406
|
+
display: flex;
|
|
407
|
+
align-items: center;
|
|
408
|
+
gap: 0.5rem;
|
|
409
|
+
padding: 0.25rem 0;
|
|
410
|
+
cursor: pointer;
|
|
411
|
+
user-select: none;
|
|
412
|
+
background: none;
|
|
413
|
+
border-bottom: none;
|
|
414
|
+
transition: background-color 0.15s ease;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.tool-stack:not(.collapsed) .tool-stack-header {
|
|
418
|
+
border-bottom-color: transparent;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.tool-stack-header:hover {
|
|
422
|
+
background-color: var(--bg-secondary);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.tool-stack-header:focus {
|
|
426
|
+
outline: 2px solid var(--border-focus);
|
|
427
|
+
outline-offset: -2px;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
/* Toggle chevron */
|
|
431
|
+
.tool-stack-toggle {
|
|
432
|
+
font-size: 0.625rem;
|
|
433
|
+
color: var(--text-muted);
|
|
434
|
+
width: 0.875rem;
|
|
435
|
+
display: flex;
|
|
436
|
+
align-items: center;
|
|
437
|
+
justify-content: center;
|
|
438
|
+
transition: transform 0.2s ease;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
/* Tool count - small de-emphasized badge */
|
|
442
|
+
.tool-stack-count-badge {
|
|
443
|
+
font-weight: 600;
|
|
444
|
+
font-size: 0.6875rem;
|
|
445
|
+
color: var(--text-muted);
|
|
446
|
+
background-color: var(--bg-tertiary);
|
|
447
|
+
padding: 0.0625rem 0.375rem;
|
|
448
|
+
border-radius: 9999px;
|
|
449
|
+
font-family: var(--font-mono);
|
|
450
|
+
min-width: 1.25rem;
|
|
451
|
+
text-align: center;
|
|
452
|
+
flex-shrink: 0;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
/* Active tool summary - the main visual element while running */
|
|
456
|
+
.tool-stack-active-summary {
|
|
457
|
+
font-weight: 500;
|
|
458
|
+
font-size: 0.8125rem;
|
|
459
|
+
color: var(--text-primary);
|
|
460
|
+
flex: 1;
|
|
461
|
+
min-width: 0;
|
|
462
|
+
overflow: hidden;
|
|
463
|
+
text-overflow: ellipsis;
|
|
464
|
+
white-space: nowrap;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
/* Mini tool badges in collapsed header */
|
|
468
|
+
.tool-stack-badges {
|
|
469
|
+
display: flex;
|
|
470
|
+
gap: 0.25rem;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.tool-mini-badge {
|
|
474
|
+
display: inline-flex;
|
|
475
|
+
align-items: center;
|
|
476
|
+
justify-content: center;
|
|
477
|
+
width: 1.125rem;
|
|
478
|
+
height: 1.125rem;
|
|
479
|
+
border-radius: 3px;
|
|
480
|
+
font-size: 0.5625rem;
|
|
481
|
+
font-weight: 700;
|
|
482
|
+
font-family: var(--font-mono);
|
|
483
|
+
color: white;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
.tool-mini-badge.badge-read { background-color: var(--tool-read-color); }
|
|
487
|
+
.tool-mini-badge.badge-write { background-color: var(--tool-write-color); }
|
|
488
|
+
.tool-mini-badge.badge-bash { background-color: var(--tool-bash-color); }
|
|
489
|
+
.tool-mini-badge.badge-glob { background-color: var(--tool-glob-color); }
|
|
490
|
+
.tool-mini-badge.badge-grep { background-color: var(--tool-grep-color); }
|
|
491
|
+
.tool-mini-badge.badge-edit { background-color: var(--tool-edit-color); }
|
|
492
|
+
.tool-mini-badge.badge-task { background-color: var(--tool-task-color); }
|
|
493
|
+
|
|
494
|
+
/* Summary in collapsed state - still prominent */
|
|
495
|
+
.tool-stack-summary {
|
|
496
|
+
color: var(--text-secondary);
|
|
497
|
+
font-size: 0.8125rem;
|
|
498
|
+
font-weight: 500;
|
|
499
|
+
overflow: hidden;
|
|
500
|
+
text-overflow: ellipsis;
|
|
501
|
+
white-space: nowrap;
|
|
502
|
+
flex: 1;
|
|
503
|
+
min-width: 0;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
/* Total duration on the right */
|
|
507
|
+
.tool-stack-duration {
|
|
508
|
+
color: var(--text-muted);
|
|
509
|
+
font-size: 0.75rem;
|
|
510
|
+
font-family: var(--font-mono);
|
|
511
|
+
margin-left: auto;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
/* Expanded content area */
|
|
515
|
+
.tool-stack-content {
|
|
516
|
+
display: flex;
|
|
517
|
+
flex-direction: column;
|
|
518
|
+
gap: 0.125rem;
|
|
519
|
+
padding: 0.25rem 0;
|
|
520
|
+
background: none;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
/* Within a stack, tool blocks don't need extra indent or left border */
|
|
524
|
+
.tool-stack-content .tool-call-block {
|
|
525
|
+
margin-left: 0;
|
|
526
|
+
border-left: none;
|
|
527
|
+
padding-left: 0;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
/* Tool state classes within stack */
|
|
531
|
+
.tool-stack-content .tool-current {
|
|
532
|
+
opacity: 1;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.tool-stack-content .tool-historical {
|
|
536
|
+
opacity: 0.85;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
/* =============================================================================
|
|
540
|
+
ACPanel Styling (MSSCI-14763) - Tufte Treatment
|
|
541
|
+
============================================================================= */
|
|
542
|
+
|
|
543
|
+
/* Panel container */
|
|
544
|
+
.ac-panel {
|
|
545
|
+
padding: 0.5rem;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
/* Content wrapper — Tufte left border accent */
|
|
549
|
+
.ac-content {
|
|
550
|
+
border-left: 2px solid var(--border);
|
|
551
|
+
padding-left: 0.5rem;
|
|
552
|
+
transition: border-color 0.15s ease;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.ac-content:hover {
|
|
556
|
+
border-left-color: var(--accent);
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
/* Progress counter — above the bar, not overlaid */
|
|
560
|
+
.ac-panel .progress-text {
|
|
561
|
+
font-size: 0.6875rem;
|
|
562
|
+
font-family: var(--font-mono);
|
|
563
|
+
font-variant-numeric: tabular-nums;
|
|
564
|
+
color: var(--text-muted);
|
|
565
|
+
margin-bottom: 0.25rem;
|
|
566
|
+
display: block;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
/* Progress bar — Tufte: thin line, no rounded corners */
|
|
570
|
+
.ac-panel .progress-bar-container {
|
|
571
|
+
position: relative;
|
|
572
|
+
height: 4px;
|
|
573
|
+
background: var(--border);
|
|
574
|
+
border-radius: 0;
|
|
575
|
+
margin-bottom: 0.5rem;
|
|
576
|
+
overflow: hidden;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.ac-panel .progress-bar {
|
|
580
|
+
height: 100%;
|
|
581
|
+
background: var(--accent);
|
|
582
|
+
border-radius: 0;
|
|
583
|
+
transition: width 0.3s ease;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
/* Criteria list */
|
|
587
|
+
.ac-list {
|
|
588
|
+
display: flex;
|
|
589
|
+
flex-direction: column;
|
|
590
|
+
gap: 0.125rem;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
/* Individual criterion */
|
|
594
|
+
.ac-item {
|
|
595
|
+
display: flex;
|
|
596
|
+
align-items: baseline;
|
|
597
|
+
gap: 0.375rem;
|
|
598
|
+
padding: 0.125rem 0;
|
|
599
|
+
font-size: 0.8125rem;
|
|
600
|
+
color: var(--text-primary);
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.ac-item.ac-done {
|
|
604
|
+
color: var(--text-muted);
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
/* Status icon */
|
|
608
|
+
.ac-icon {
|
|
609
|
+
width: 1rem;
|
|
610
|
+
text-align: center;
|
|
611
|
+
flex-shrink: 0;
|
|
612
|
+
font-size: 0.75rem;
|
|
613
|
+
color: var(--text-secondary);
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.ac-done .ac-icon {
|
|
617
|
+
color: var(--status-success);
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
/* Criterion text */
|
|
621
|
+
.ac-text {
|
|
622
|
+
flex: 1;
|
|
623
|
+
min-width: 0;
|
|
624
|
+
line-height: 1.4;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.ac-done .ac-text {
|
|
628
|
+
text-decoration: line-through;
|
|
629
|
+
text-decoration-color: var(--text-muted);
|
|
630
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* React Hooks Index
|
|
3
|
+
*
|
|
4
|
+
* Story MSSCI-12717 - React Migration
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Data hooks
|
|
8
|
+
export { useStory } from './useStory';
|
|
9
|
+
export type { StoryData } from './useStory';
|
|
10
|
+
|
|
11
|
+
export { useGitStatus } from './useGitStatus';
|
|
12
|
+
export type { GitStatusData } from './useGitStatus';
|
|
13
|
+
|
|
14
|
+
export { useTodos } from './useTodos';
|
|
15
|
+
export type { TodoItem } from './useTodos';
|
|
16
|
+
|
|
17
|
+
export { useBackgroundTasks } from './useBackgroundTasks';
|
|
18
|
+
export type { BackgroundTask } from './useBackgroundTasks';
|
|
19
|
+
|
|
20
|
+
export { useDiffs } from './useDiffs';
|
|
21
|
+
export type { DiffData } from './useDiffs';
|
|
22
|
+
|
|
23
|
+
// useMessageStream is deprecated - use ClaudeContext instead
|
|
24
|
+
|
|
25
|
+
export { useStatsStrip } from './useStatsStrip';
|
|
26
|
+
|
|
27
|
+
export { usePersona } from './usePersona';
|
|
28
|
+
export type { PersonaData } from './usePersona';
|
|
29
|
+
|
|
30
|
+
// Editor hooks
|
|
31
|
+
export { useCommandHistory } from './useCommandHistory';
|
|
32
|
+
export { useTabCompletion } from './useTabCompletion';
|
|
33
|
+
export { useMessageQueue } from './useMessageQueue';
|
|
34
|
+
export type { QueuedMessage } from './useMessageQueue';
|
|
35
|
+
|
|
36
|
+
// Claude API hooks
|
|
37
|
+
export { useClaude } from './useClaude';
|
|
38
|
+
export type { UseClaudeResult, UseClaudeCallbacks, ClaudeMessage, PermissionMode, PastedImage } from './useClaude';
|
|
39
|
+
|
|
40
|
+
// Content processing hooks
|
|
41
|
+
export { useMarkdownParser } from './useMarkdownParser';
|
|
42
|
+
export type { UseMarkdownParserResult } from './useMarkdownParser';
|
|
43
|
+
|
|
44
|
+
export { useSyntaxHighlighter } from './useSyntaxHighlighter';
|
|
45
|
+
export type { UseSyntaxHighlighterResult } from './useSyntaxHighlighter';
|
|
46
|
+
|
|
47
|
+
// Agent load analysis
|
|
48
|
+
export { useAgentLoad } from './useAgentLoad';
|
|
49
|
+
export type { AgentLoadData, AgentLoadEntry, PruneResult } from './useAgentLoad';
|