Commit f39faaa
feat(cockpit): add render and chat product sections (#68)
* feat(cockpit): add render/spec-rendering capability
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add render/element-rendering capability
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add render/state-management capability
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add render/registry capability
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add render/repeat-loops capability
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add render/computed-functions capability
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add chat/messages capability
Adds the messages capability demonstrating ChatMessagesComponent,
ChatInputComponent, and ChatTypingIndicatorComponent primitives.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add chat/input capability
Adds the input capability showcasing ChatInputComponent with keyboard
handling, disabled state, custom placeholder, and loading indicators.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add chat/interrupts capability
Adds the interrupts capability demonstrating human-in-the-loop approval
gates using LangGraph interrupt() and ChatInterruptPanelComponent.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add chat/tool-calls capability
Adds the tool-calls capability with search, calculator, and weather
tools demonstrating ChatToolCallsComponent and ChatToolCallCardComponent.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add chat/subagents capability
Adds the subagents capability demonstrating orchestrator pattern with
ChatSubagentsComponent and ChatSubagentCardComponent for tracking
research, analysis, and summary subagents.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add chat/threads capability
Adds the threads capability demonstrating multi-thread conversation
management with ChatThreadListComponent for creating and switching threads.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add chat/timeline capability
Adds the timeline capability demonstrating conversation checkpoint
navigation with ChatTimelineSliderComponent for time-travel debugging.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add chat/generative-ui capability
Adds the generative-ui capability demonstrating dynamic UI generation
within chat messages using ChatGenerativeUiComponent and provideRender.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add chat/debug capability
Adds the debug capability using ChatDebugComponent with a multi-step
graph (generate/process/summarize) for rich state inspection, diffs,
and timeline debugging.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add chat/theming capability
Adds the theming capability demonstrating CSS custom property
customization with CHAT_THEME_STYLES and a runtime theme picker
supporting dark, light, ocean, and forest presets.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* test(cockpit): add render and chat matrix tests
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* test(cockpit): add render and chat footprint tests
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* docs(cockpit): add render product docs pages
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* docs(cockpit): add chat product docs pages
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix(cockpit): rewrite render examples as standalone demos without chat dependency
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix(cockpit): update chat examples to agent() API from @cacheplane/angular
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): add render and chat products to manifest and capability registry
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): register render and chat modules in route resolution and update tests
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* docs(cockpit): add cross-references from existing capabilities to chat
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore(cockpit): add package.json files for Nx project discovery
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix(cockpit): use CockpitProduct type in route handler for render/chat support
The product type cast was hardcoded to 'deep-agents' | 'langgraph',
causing 404s when navigating to render or chat capabilities.
* docs: add streaming simulation design spec for render examples
* docs: add streaming simulation implementation plan
* feat(cockpit): add StreamingSimulator and StreamingTimelineComponent
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix(cockpit): validate setSpeed input in StreamingSimulator
* feat(cockpit): rewrite spec-rendering with streaming simulation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix(cockpit): add protected modifier and clean up stale store in spec-rendering
* feat(cockpit): rewrite element-rendering with streaming simulation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): rewrite state-management with streaming simulation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): rewrite registry with streaming simulation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): rewrite repeat-loops with streaming simulation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(cockpit): rewrite computed-functions with streaming simulation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* test(cockpit): update render example e2e tests for streaming simulation
* fix(cockpit): add bindings/emit/loading inputs to all render demo components
* fix(cockpit): use h-full instead of h-screen for iframe-compatible height
* fix(cockpit): make shell full viewport height with scrollable sidebar
* fix(cockpit): render children in DemoHeadingComponent across all render examples
* feat(cockpit): add skeleton shimmer effect to all render demo components
* feat(cockpit): add interactive controls panels to element-rendering, state-management, and repeat-loops demos
* fix(cockpit): move controls below JSON pane and add auto-scroll to streaming JSON
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix(cockpit): fix visibility toggle — use $state condition and Angular signal for reactivity
* fix(cockpit): review fixes — sandbox eval, remove unused import, responsive mobile layout
- Sandbox eval() in tool-calls graph.py with restricted builtins
- Remove unused CHAT_THEME_STYLES import from theming component
- Make all 6 render examples responsive: stack vertically on mobile
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>1 parent a3326f8 commit f39faaa
452 files changed
Lines changed: 11112 additions & 14 deletions
File tree
- apps
- cockpit
- scripts
- src
- components
- lib
- website/content/docs
- chat
- core-capabilities
- debug/python
- generative-ui/python
- input/python
- interrupts/python
- messages/python
- subagents/python
- theming/python
- threads/python
- timeline/python
- tool-calls/python
- getting-started/overview/python
- render
- core-capabilities
- computed-functions/python
- element-rendering/python
- registry/python
- repeat-loops/python
- spec-rendering/python
- state-management/python
- getting-started/overview/python
- cockpit
- chat
- debug
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- generative-ui
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- input
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- interrupts
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- messages
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- subagents
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- theming
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- threads
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- timeline
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- tool-calls
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- deep-agents
- memory/python/docs
- planning/python/docs
- subagents/python/docs
- langgraph
- interrupts/python/docs
- memory/python/docs
- persistence/python/docs
- streaming/python/docs
- subgraphs/python/docs
- time-travel/python/docs
- render
- computed-functions
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- element-rendering
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- registry
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- repeat-loops
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- spec-rendering
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- state-management
- angular
- e2e
- src
- app
- environments
- python
- docs
- prompts
- src
- docs/superpowers
- plans
- specs
- libs
- cockpit-docs/src/lib
- cockpit-registry/src/lib
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
30 | 48 | | |
31 | 49 | | |
32 | 50 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
64 | | - | |
| 64 | + | |
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
| |||
94 | 94 | | |
95 | 95 | | |
96 | 96 | | |
97 | | - | |
| 97 | + | |
98 | 98 | | |
99 | 99 | | |
100 | 100 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
31 | | - | |
| 30 | + | |
| 31 | + | |
32 | 32 | | |
33 | | - | |
34 | | - | |
| 33 | + | |
| 34 | + | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
| 50 | + | |
50 | 51 | | |
51 | 52 | | |
52 | 53 | | |
53 | 54 | | |
54 | 55 | | |
55 | 56 | | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
56 | 63 | | |
57 | 64 | | |
58 | 65 | | |
| |||
125 | 132 | | |
126 | 133 | | |
127 | 134 | | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
128 | 169 | | |
129 | 170 | | |
130 | 171 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
20 | 36 | | |
21 | 37 | | |
22 | 38 | | |
| |||
70 | 86 | | |
71 | 87 | | |
72 | 88 | | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
73 | 105 | | |
74 | 106 | | |
75 | 107 | | |
| |||
135 | 167 | | |
136 | 168 | | |
137 | 169 | | |
138 | | - | |
| 170 | + | |
139 | 171 | | |
140 | 172 | | |
141 | 173 | | |
| |||
Lines changed: 3 additions & 0 deletions
Lines changed: 3 additions & 0 deletions
Lines changed: 5 additions & 0 deletions
Lines changed: 3 additions & 0 deletions
Lines changed: 3 additions & 0 deletions
0 commit comments