@laitszkin/apollo-toolkit 4.1.4 → 5.0.1
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/CHANGELOG.md +45 -0
- package/bin/apollo-toolkit.ts +4 -0
- package/dist/bin/apollo-toolkit.js +4 -0
- package/package.json +3 -2
- package/packages/cli/dist/help-text-builder.d.ts +23 -0
- package/packages/cli/dist/help-text-builder.js +166 -0
- package/packages/cli/dist/index.d.ts +6 -17
- package/packages/cli/dist/index.js +52 -246
- package/packages/cli/dist/installer.d.ts +1 -0
- package/packages/cli/dist/installer.js +20 -7
- package/packages/cli/dist/parsers/install-parser.d.ts +15 -0
- package/packages/cli/dist/parsers/install-parser.js +87 -0
- package/packages/cli/dist/parsers/parser-utils.d.ts +9 -0
- package/packages/cli/dist/parsers/parser-utils.js +16 -0
- package/packages/cli/dist/parsers/tool-parser.d.ts +16 -0
- package/packages/cli/dist/parsers/tool-parser.js +58 -0
- package/packages/cli/dist/parsers/types.d.ts +50 -0
- package/packages/cli/dist/parsers/types.js +1 -0
- package/packages/cli/dist/parsers/uninstall-parser.d.ts +15 -0
- package/packages/cli/dist/parsers/uninstall-parser.js +67 -0
- package/packages/cli/dist/tool-registration.d.ts +2 -0
- package/packages/cli/dist/tool-registration.js +2 -0
- package/packages/cli/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/cli/dist/types.d.ts +3 -1
- package/packages/cli/dist/updater.js +11 -5
- package/packages/cli/help-text-builder.ts +180 -0
- package/packages/cli/index.ts +59 -251
- package/packages/cli/installer.ts +19 -7
- package/packages/cli/package.json +14 -4
- package/packages/cli/parsers/install-parser.ts +94 -0
- package/packages/cli/parsers/parser-utils.ts +17 -0
- package/packages/cli/parsers/tool-parser.ts +65 -0
- package/packages/cli/parsers/types.ts +56 -0
- package/packages/cli/parsers/uninstall-parser.ts +75 -0
- package/packages/cli/tool-registration.ts +3 -0
- package/packages/cli/types.ts +6 -1
- package/packages/cli/updater.ts +11 -5
- package/packages/tool-registry/dist/registry.js +3 -4
- package/packages/tool-registry/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tool-registry/dist/types.d.ts +2 -9
- package/packages/tool-registry/package.json +11 -4
- package/packages/tool-registry/registry.ts +3 -4
- package/packages/tool-registry/tsconfig.json +6 -2
- package/packages/tool-registry/types.ts +3 -9
- package/packages/tool-utils/app-error.ts +97 -0
- package/packages/tool-utils/dist/app-error.d.ts +49 -0
- package/packages/tool-utils/dist/app-error.js +80 -0
- package/packages/tool-utils/dist/index.d.ts +5 -0
- package/packages/tool-utils/dist/index.js +3 -0
- package/packages/tool-utils/dist/platform-adapter.d.ts +48 -0
- package/packages/tool-utils/dist/platform-adapter.js +73 -0
- package/packages/tool-utils/dist/schema.d.ts +68 -0
- package/packages/tool-utils/dist/schema.js +67 -0
- package/packages/tool-utils/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tool-utils/index.ts +12 -0
- package/packages/tool-utils/package.json +11 -4
- package/packages/tool-utils/platform-adapter.ts +112 -0
- package/packages/tool-utils/schema.ts +122 -0
- package/packages/tools/architecture/dist/index.d.ts +13 -0
- package/packages/tools/architecture/dist/index.js +55 -57
- package/packages/tools/architecture/dist/index.test.js +17 -4
- package/packages/tools/architecture/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/architecture/index.test.ts +27 -14
- package/packages/tools/architecture/index.ts +85 -88
- package/packages/tools/architecture/package.json +11 -4
- package/packages/tools/codegraph/dist/index.js +12 -22
- package/packages/tools/codegraph/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/codegraph/index.ts +13 -22
- package/packages/tools/codegraph/package.json +11 -4
- package/packages/tools/create-review-report/dist/index.d.ts +1 -2
- package/packages/tools/create-review-report/dist/index.js +46 -77
- package/packages/tools/create-review-report/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/create-review-report/index.ts +52 -81
- package/packages/tools/create-review-report/package.json +11 -4
- package/packages/tools/create-specs/dist/index.d.ts +1 -2
- package/packages/tools/create-specs/dist/index.js +70 -123
- package/packages/tools/create-specs/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/create-specs/index.ts +82 -128
- package/packages/tools/create-specs/package.json +11 -4
- package/packages/tools/docs-to-voice/dist/index.d.ts +1 -2
- package/packages/tools/docs-to-voice/dist/index.js +116 -219
- package/packages/tools/docs-to-voice/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/docs-to-voice/index.ts +265 -385
- package/packages/tools/docs-to-voice/package.json +11 -4
- package/packages/tools/enforce-video-aspect-ratio/dist/index.d.ts +1 -2
- package/packages/tools/enforce-video-aspect-ratio/dist/index.js +77 -154
- package/packages/tools/enforce-video-aspect-ratio/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/enforce-video-aspect-ratio/index.ts +87 -172
- package/packages/tools/enforce-video-aspect-ratio/package.json +11 -4
- package/packages/tools/eval/dist/index.js +7 -0
- package/packages/tools/eval/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/eval/index.ts +8 -0
- package/packages/tools/eval/package.json +11 -4
- package/packages/tools/extract-conversations/dist/index.d.ts +1 -2
- package/packages/tools/extract-conversations/dist/index.js +31 -29
- package/packages/tools/extract-conversations/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/extract-conversations/index.ts +37 -30
- package/packages/tools/extract-conversations/package.json +11 -4
- package/packages/tools/extract-pdf-text/dist/index.d.ts +1 -2
- package/packages/tools/extract-pdf-text/dist/index.js +44 -65
- package/packages/tools/extract-pdf-text/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/extract-pdf-text/index.ts +55 -74
- package/packages/tools/extract-pdf-text/package.json +11 -4
- package/packages/tools/filter-logs/dist/index.js +60 -84
- package/packages/tools/filter-logs/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/filter-logs/index.ts +67 -97
- package/packages/tools/filter-logs/package.json +11 -4
- package/packages/tools/find-github-issues/dist/index.d.ts +10 -0
- package/packages/tools/find-github-issues/dist/index.js +34 -5
- package/packages/tools/find-github-issues/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/find-github-issues/index.ts +37 -5
- package/packages/tools/find-github-issues/package.json +11 -4
- package/packages/tools/generate-storyboard-images/dist/index.d.ts +1 -2
- package/packages/tools/generate-storyboard-images/dist/index.js +98 -173
- package/packages/tools/generate-storyboard-images/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/generate-storyboard-images/index.ts +100 -188
- package/packages/tools/generate-storyboard-images/package.json +11 -4
- package/packages/tools/open-github-issue/dist/index.d.ts +13 -0
- package/packages/tools/open-github-issue/dist/index.js +67 -68
- package/packages/tools/open-github-issue/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/open-github-issue/index.ts +71 -72
- package/packages/tools/open-github-issue/package.json +11 -4
- package/packages/tools/read-github-issue/dist/index.d.ts +16 -1
- package/packages/tools/read-github-issue/dist/index.js +32 -40
- package/packages/tools/read-github-issue/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/read-github-issue/index.ts +32 -45
- package/packages/tools/read-github-issue/package.json +11 -4
- package/packages/tools/render-error-book/dist/index.d.ts +1 -2
- package/packages/tools/render-error-book/dist/index.js +74 -95
- package/packages/tools/render-error-book/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/render-error-book/index.ts +88 -103
- package/packages/tools/render-error-book/package.json +11 -4
- package/packages/tools/render-katex/dist/index.d.ts +1 -2
- package/packages/tools/render-katex/dist/index.js +70 -157
- package/packages/tools/render-katex/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/render-katex/index.ts +138 -222
- package/packages/tools/render-katex/package.json +11 -4
- package/packages/tools/review-threads/dist/index.d.ts +12 -0
- package/packages/tools/review-threads/dist/index.js +83 -86
- package/packages/tools/review-threads/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/review-threads/index.ts +90 -84
- package/packages/tools/review-threads/package.json +11 -4
- package/packages/tools/search-logs/dist/index.js +100 -136
- package/packages/tools/search-logs/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/search-logs/index.ts +113 -145
- package/packages/tools/search-logs/package.json +11 -4
- package/packages/tools/sync-memory-index/dist/index.js +34 -28
- package/packages/tools/sync-memory-index/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/sync-memory-index/index.ts +37 -28
- package/packages/tools/sync-memory-index/package.json +11 -4
- package/packages/tools/validate-openai-agent-config/dist/index.js +13 -7
- package/packages/tools/validate-openai-agent-config/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/validate-openai-agent-config/index.ts +13 -7
- package/packages/tools/validate-openai-agent-config/package.json +11 -4
- package/packages/tools/validate-skill-frontmatter/dist/index.js +12 -6
- package/packages/tools/validate-skill-frontmatter/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tools/validate-skill-frontmatter/index.ts +12 -6
- package/packages/tools/validate-skill-frontmatter/package.json +11 -4
- package/packages/tui/dist/index.d.ts +2 -1
- package/packages/tui/dist/index.js +1 -0
- package/packages/tui/dist/stdio-adapter.d.ts +36 -0
- package/packages/tui/dist/stdio-adapter.js +69 -0
- package/packages/tui/dist/terminal.js +3 -1
- package/packages/tui/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/tui/dist/types.d.ts +17 -0
- package/packages/tui/index.ts +2 -1
- package/packages/tui/package.json +14 -6
- package/packages/tui/stdio-adapter.ts +85 -0
- package/packages/tui/terminal.ts +3 -1
- package/packages/tui/tsconfig.json +5 -2
- package/packages/tui/types.ts +19 -0
- package/resources/project-architecture/assets/architecture.css +2 -1
- package/resources/project-architecture/atlas/atlas.history.log +1 -0
- package/resources/project-architecture/atlas/atlas.history.undo.json +13 -2
- package/resources/project-architecture/atlas/atlas.history.undo.stack.json +610 -0
- package/resources/project-architecture/atlas/atlas.index.yaml +81 -5
- package/resources/project-architecture/atlas/features/cli-dispatch.yaml +43 -0
- package/resources/project-architecture/atlas/features/terminal-ui.yaml +29 -0
- package/resources/project-architecture/atlas/features/tool-registry.yaml +22 -0
- package/resources/project-architecture/atlas/features/tool-utils.yaml +22 -0
- package/resources/project-architecture/features/cli-dispatch/arg-parser.html +40 -0
- package/resources/project-architecture/features/cli-dispatch/help-builder.html +40 -0
- package/resources/project-architecture/features/cli-dispatch/index.html +64 -0
- package/resources/project-architecture/features/cli-dispatch/installer-core.html +40 -0
- package/resources/project-architecture/features/cli-dispatch/tool-discovery.html +40 -0
- package/resources/project-architecture/features/cli-dispatch/update-checker.html +40 -0
- package/resources/project-architecture/features/terminal-ui/banner-display.html +40 -0
- package/resources/project-architecture/features/terminal-ui/index.html +50 -0
- package/resources/project-architecture/features/terminal-ui/interactive-prompts.html +40 -0
- package/resources/project-architecture/features/terminal-ui/terminal-detection.html +40 -0
- package/resources/project-architecture/features/tool-registry/formatter.html +40 -0
- package/resources/project-architecture/features/tool-registry/index.html +43 -0
- package/resources/project-architecture/features/tool-registry/registry-core.html +40 -0
- package/resources/project-architecture/features/tool-utils/index.html +43 -0
- package/resources/project-architecture/features/tool-utils/log-utils.html +40 -0
- package/resources/project-architecture/features/tool-utils/skill-discovery.html +40 -0
- package/resources/project-architecture/index.html +365 -121
- package/scripts/rewrite-imports.mjs +2 -2
- package/scripts/test.sh +144 -8
- package/skills/design/SKILL.md +57 -64
- package/skills/design/assets/templates/DESIGN.md +12 -0
- package/skills/design/references/code-smells.md +94 -0
- package/skills/design/references/module-boundary-adjustment.md +126 -0
- package/skills/design/references/module-internal-restructuring.md +132 -0
- package/skills/design/references/module-internal-simplification.md +164 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
meta:
|
|
2
2
|
title: Project architecture (+ codegraph integration overlay)
|
|
3
3
|
summary: >
|
|
4
|
-
完整 C4 架構圖:eval 評測系統 (8 features) + codegraph 程式碼分析 (1 feature, 3 submodules)。
|
|
5
|
-
|
|
6
|
-
@
|
|
7
|
-
|
|
8
|
-
updatedAt: '2026-06-
|
|
4
|
+
完整 C4 架構圖:eval 評測系統 (8 features) + codegraph 程式碼分析 (1 feature, 3 submodules)。 外部 actor: Judge
|
|
5
|
+
Model API, GitHub Actions CI, Developer, Skill Files, @colbymchenry/codegraph (npm),
|
|
6
|
+
@laitszkin/tool-registry, @laitszkin/tui。 Eval 管線包含完整資料流: CLI → Executor → Scorer → Reporter →
|
|
7
|
+
CI Gate。
|
|
8
|
+
updatedAt: '2026-06-06T13:03:10.925Z'
|
|
9
9
|
actors:
|
|
10
10
|
- id: judge-model-api
|
|
11
11
|
label: Judge Model API
|
|
@@ -31,6 +31,10 @@ features:
|
|
|
31
31
|
- eval-executor
|
|
32
32
|
- eval-scorer
|
|
33
33
|
- eval-reporter
|
|
34
|
+
- cli-dispatch
|
|
35
|
+
- tool-registry
|
|
36
|
+
- tool-utils
|
|
37
|
+
- terminal-ui
|
|
34
38
|
edges:
|
|
35
39
|
- id: cg-e-001
|
|
36
40
|
from:
|
|
@@ -106,3 +110,75 @@ edges:
|
|
|
106
110
|
feature: eval-ci-gate
|
|
107
111
|
kind: call
|
|
108
112
|
label: CI 模式下觸發 PR 回報
|
|
113
|
+
- id: cli-edge-001
|
|
114
|
+
from:
|
|
115
|
+
feature: cli-dispatch
|
|
116
|
+
submodule: arg-parser
|
|
117
|
+
to:
|
|
118
|
+
feature: tool-registry
|
|
119
|
+
submodule: registry-core
|
|
120
|
+
kind: call
|
|
121
|
+
label: run() calls runTool()
|
|
122
|
+
- id: cli-edge-002
|
|
123
|
+
from:
|
|
124
|
+
feature: cli-dispatch
|
|
125
|
+
submodule: installer-core
|
|
126
|
+
to:
|
|
127
|
+
feature: terminal-ui
|
|
128
|
+
submodule: banner-display
|
|
129
|
+
kind: call
|
|
130
|
+
label: install summary uses banner
|
|
131
|
+
- id: cli-edge-003
|
|
132
|
+
from:
|
|
133
|
+
feature: cli-dispatch
|
|
134
|
+
submodule: installer-core
|
|
135
|
+
to:
|
|
136
|
+
feature: terminal-ui
|
|
137
|
+
submodule: interactive-prompts
|
|
138
|
+
kind: call
|
|
139
|
+
label: install prompts use inquirer
|
|
140
|
+
- id: cli-edge-004
|
|
141
|
+
from:
|
|
142
|
+
feature: cli-dispatch
|
|
143
|
+
submodule: help-builder
|
|
144
|
+
to:
|
|
145
|
+
feature: terminal-ui
|
|
146
|
+
submodule: banner-display
|
|
147
|
+
kind: call
|
|
148
|
+
label: help text uses buildBanner
|
|
149
|
+
- id: cli-edge-005
|
|
150
|
+
from:
|
|
151
|
+
feature: cli-dispatch
|
|
152
|
+
submodule: help-builder
|
|
153
|
+
to:
|
|
154
|
+
feature: tool-registry
|
|
155
|
+
submodule: formatter
|
|
156
|
+
kind: call
|
|
157
|
+
label: help text uses formatToolList
|
|
158
|
+
- id: cli-edge-006
|
|
159
|
+
from:
|
|
160
|
+
feature: cli-dispatch
|
|
161
|
+
submodule: tool-discovery
|
|
162
|
+
to:
|
|
163
|
+
feature: tool-registry
|
|
164
|
+
submodule: registry-core
|
|
165
|
+
kind: call
|
|
166
|
+
label: registerAllTools calls registerTool
|
|
167
|
+
- id: cli-edge-007
|
|
168
|
+
from:
|
|
169
|
+
feature: cli-dispatch
|
|
170
|
+
submodule: update-checker
|
|
171
|
+
to:
|
|
172
|
+
feature: terminal-ui
|
|
173
|
+
submodule: terminal-detection
|
|
174
|
+
kind: call
|
|
175
|
+
label: update check uses isInteractive
|
|
176
|
+
- id: cli-edge-008
|
|
177
|
+
from:
|
|
178
|
+
feature: cli-dispatch
|
|
179
|
+
submodule: installer-core
|
|
180
|
+
to:
|
|
181
|
+
feature: terminal-ui
|
|
182
|
+
submodule: terminal-detection
|
|
183
|
+
kind: call
|
|
184
|
+
label: installer uses supportsColor
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
slug: cli-dispatch
|
|
2
|
+
title: CLI Dispatch and Install Engine
|
|
3
|
+
story: >-
|
|
4
|
+
CLI entry point providing argument parsing, command dispatch, and install/uninstall orchestration
|
|
5
|
+
engine
|
|
6
|
+
dependsOn: []
|
|
7
|
+
submodules:
|
|
8
|
+
- slug: arg-parser
|
|
9
|
+
kind: service
|
|
10
|
+
role: 'parseArguments: CLI argument parsing and dispatch'
|
|
11
|
+
functions: []
|
|
12
|
+
variables: []
|
|
13
|
+
dataflow: []
|
|
14
|
+
errors: []
|
|
15
|
+
- slug: help-builder
|
|
16
|
+
kind: service
|
|
17
|
+
role: 'buildHelpText family: command help text generation'
|
|
18
|
+
functions: []
|
|
19
|
+
variables: []
|
|
20
|
+
dataflow: []
|
|
21
|
+
errors: []
|
|
22
|
+
- slug: installer-core
|
|
23
|
+
kind: service
|
|
24
|
+
role: 'installLinks/syncToolkitHome/uninstallSkills: installation engine'
|
|
25
|
+
functions: []
|
|
26
|
+
variables: []
|
|
27
|
+
dataflow: []
|
|
28
|
+
errors: []
|
|
29
|
+
- slug: tool-discovery
|
|
30
|
+
kind: service
|
|
31
|
+
role: 'registerAllTools/isKnownToolName: dynamic tool loading'
|
|
32
|
+
functions: []
|
|
33
|
+
variables: []
|
|
34
|
+
dataflow: []
|
|
35
|
+
errors: []
|
|
36
|
+
- slug: update-checker
|
|
37
|
+
kind: service
|
|
38
|
+
role: 'checkForPackageUpdate/execCommand: npm version check'
|
|
39
|
+
functions: []
|
|
40
|
+
variables: []
|
|
41
|
+
dataflow: []
|
|
42
|
+
errors: []
|
|
43
|
+
edges: []
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
slug: terminal-ui
|
|
2
|
+
title: Terminal UI
|
|
3
|
+
story: >-
|
|
4
|
+
Terminal output formatting: ANSI color, banner/welcome screen, interactive prompts, and structured
|
|
5
|
+
output functions
|
|
6
|
+
dependsOn: []
|
|
7
|
+
submodules:
|
|
8
|
+
- slug: terminal-detection
|
|
9
|
+
kind: service
|
|
10
|
+
role: 'isInteractive/supportsColor: TTY and color detection'
|
|
11
|
+
functions: []
|
|
12
|
+
variables: []
|
|
13
|
+
dataflow: []
|
|
14
|
+
errors: []
|
|
15
|
+
- slug: banner-display
|
|
16
|
+
kind: service
|
|
17
|
+
role: 'buildBanner/buildWordmark: branding display'
|
|
18
|
+
functions: []
|
|
19
|
+
variables: []
|
|
20
|
+
dataflow: []
|
|
21
|
+
errors: []
|
|
22
|
+
- slug: interactive-prompts
|
|
23
|
+
kind: service
|
|
24
|
+
role: 'promptForModes/promptYesNo: user prompts'
|
|
25
|
+
functions: []
|
|
26
|
+
variables: []
|
|
27
|
+
dataflow: []
|
|
28
|
+
errors: []
|
|
29
|
+
edges: []
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
slug: tool-registry
|
|
2
|
+
title: Tool Registry
|
|
3
|
+
story: >-
|
|
4
|
+
Central in-memory registry of ToolDefinition entries, supporting register/get/list/runTool and
|
|
5
|
+
tool list formatting
|
|
6
|
+
dependsOn: []
|
|
7
|
+
submodules:
|
|
8
|
+
- slug: registry-core
|
|
9
|
+
kind: service
|
|
10
|
+
role: 'registerTool/getTool/listTools/runTool: in-memory registry'
|
|
11
|
+
functions: []
|
|
12
|
+
variables: []
|
|
13
|
+
dataflow: []
|
|
14
|
+
errors: []
|
|
15
|
+
- slug: formatter
|
|
16
|
+
kind: service
|
|
17
|
+
role: 'formatToolList/buildToolDiscoveryHelp: tool list display'
|
|
18
|
+
functions: []
|
|
19
|
+
variables: []
|
|
20
|
+
dataflow: []
|
|
21
|
+
errors: []
|
|
22
|
+
edges: []
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
slug: tool-utils
|
|
2
|
+
title: Tool Utilities
|
|
3
|
+
story: >-
|
|
4
|
+
Shared utilities consumed by tools: timestamp parsing, skill discovery, cross-platform abstraction
|
|
5
|
+
(after refactoring)
|
|
6
|
+
dependsOn: []
|
|
7
|
+
submodules:
|
|
8
|
+
- slug: log-utils
|
|
9
|
+
kind: service
|
|
10
|
+
role: 'extractTimestamp/parseCliTimestamp/inWindow: log parsing'
|
|
11
|
+
functions: []
|
|
12
|
+
variables: []
|
|
13
|
+
dataflow: []
|
|
14
|
+
errors: []
|
|
15
|
+
- slug: skill-discovery
|
|
16
|
+
kind: service
|
|
17
|
+
role: 'iterSkillDirs: skill directory enumeration'
|
|
18
|
+
functions: []
|
|
19
|
+
variables: []
|
|
20
|
+
dataflow: []
|
|
21
|
+
errors: []
|
|
22
|
+
edges: []
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en" data-atlas-page="submodule">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>CLI Dispatch and Install Engine · arg-parser</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
|
+
<meta name="color-scheme" content="dark">
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Geist:wght@300..700&family=JetBrains+Mono:wght@400..600&display=swap">
|
|
11
|
+
<link rel="stylesheet" href="../../assets/architecture.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<header class="submodule-header">
|
|
15
|
+
<nav class="submodule-breadcrumb"><a href="../../index.html">← Atlas</a> · <a href="index.html">← CLI Dispatch and Install Engine</a></nav>
|
|
16
|
+
<h1>arg-parser <small class="submodule-kind">Service</small></h1>
|
|
17
|
+
<p class="submodule-role">parseArguments: CLI argument parsing and dispatch</p>
|
|
18
|
+
|
|
19
|
+
</header>
|
|
20
|
+
<main class="submodule-main">
|
|
21
|
+
<section aria-label="Function I/O">
|
|
22
|
+
<h2>Function I/O</h2>
|
|
23
|
+
<p class="sub-section__empty">No functions recorded.</p>
|
|
24
|
+
</section>
|
|
25
|
+
<section aria-label="Variables">
|
|
26
|
+
<h2>Variables</h2>
|
|
27
|
+
<p class="sub-section__empty">No variables recorded.</p>
|
|
28
|
+
</section>
|
|
29
|
+
<section aria-label="Internal data flow">
|
|
30
|
+
<h2>Internal data flow</h2>
|
|
31
|
+
<p class="sub-dataflow__empty">No internal dataflow steps recorded.</p>
|
|
32
|
+
</section>
|
|
33
|
+
<section aria-label="Errors">
|
|
34
|
+
<h2>Errors</h2>
|
|
35
|
+
<p class="sub-section__empty">No errors recorded.</p>
|
|
36
|
+
</section>
|
|
37
|
+
</main>
|
|
38
|
+
<script src="../../assets/viewer.client.js" defer></script>
|
|
39
|
+
</body>
|
|
40
|
+
</html>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en" data-atlas-page="submodule">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>CLI Dispatch and Install Engine · help-builder</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
|
+
<meta name="color-scheme" content="dark">
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Geist:wght@300..700&family=JetBrains+Mono:wght@400..600&display=swap">
|
|
11
|
+
<link rel="stylesheet" href="../../assets/architecture.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<header class="submodule-header">
|
|
15
|
+
<nav class="submodule-breadcrumb"><a href="../../index.html">← Atlas</a> · <a href="index.html">← CLI Dispatch and Install Engine</a></nav>
|
|
16
|
+
<h1>help-builder <small class="submodule-kind">Service</small></h1>
|
|
17
|
+
<p class="submodule-role">buildHelpText family: command help text generation</p>
|
|
18
|
+
|
|
19
|
+
</header>
|
|
20
|
+
<main class="submodule-main">
|
|
21
|
+
<section aria-label="Function I/O">
|
|
22
|
+
<h2>Function I/O</h2>
|
|
23
|
+
<p class="sub-section__empty">No functions recorded.</p>
|
|
24
|
+
</section>
|
|
25
|
+
<section aria-label="Variables">
|
|
26
|
+
<h2>Variables</h2>
|
|
27
|
+
<p class="sub-section__empty">No variables recorded.</p>
|
|
28
|
+
</section>
|
|
29
|
+
<section aria-label="Internal data flow">
|
|
30
|
+
<h2>Internal data flow</h2>
|
|
31
|
+
<p class="sub-dataflow__empty">No internal dataflow steps recorded.</p>
|
|
32
|
+
</section>
|
|
33
|
+
<section aria-label="Errors">
|
|
34
|
+
<h2>Errors</h2>
|
|
35
|
+
<p class="sub-section__empty">No errors recorded.</p>
|
|
36
|
+
</section>
|
|
37
|
+
</main>
|
|
38
|
+
<script src="../../assets/viewer.client.js" defer></script>
|
|
39
|
+
</body>
|
|
40
|
+
</html>
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en" data-atlas-page="feature">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>CLI Dispatch and Install Engine</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
|
+
<meta name="color-scheme" content="dark">
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Geist:wght@300..700&family=JetBrains+Mono:wght@400..600&display=swap">
|
|
11
|
+
<link rel="stylesheet" href="../../assets/architecture.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<header class="feature-header">
|
|
15
|
+
<nav class="feature-breadcrumb"><a href="../../index.html">← Atlas</a></nav>
|
|
16
|
+
<h1>CLI Dispatch and Install Engine</h1>
|
|
17
|
+
|
|
18
|
+
</header>
|
|
19
|
+
<main class="feature-main">
|
|
20
|
+
<section class="feature-story"><p>CLI entry point providing argument parsing, command dispatch, and install/uninstall orchestration engine</p></section>
|
|
21
|
+
<section class="feature-submodules" aria-label="Submodules">
|
|
22
|
+
<h2>Submodules</h2>
|
|
23
|
+
<ul class="submodule-nav">
|
|
24
|
+
<li class="submodule-card">
|
|
25
|
+
<a class="submodule-card__link" href="arg-parser.html">
|
|
26
|
+
<span class="submodule-card__name">arg-parser</span>
|
|
27
|
+
<span class="submodule-card__kind">Service</span>
|
|
28
|
+
</a>
|
|
29
|
+
<p class="submodule-card__role">parseArguments: CLI argument parsing and dispatch</p>
|
|
30
|
+
</li>
|
|
31
|
+
<li class="submodule-card">
|
|
32
|
+
<a class="submodule-card__link" href="help-builder.html">
|
|
33
|
+
<span class="submodule-card__name">help-builder</span>
|
|
34
|
+
<span class="submodule-card__kind">Service</span>
|
|
35
|
+
</a>
|
|
36
|
+
<p class="submodule-card__role">buildHelpText family: command help text generation</p>
|
|
37
|
+
</li>
|
|
38
|
+
<li class="submodule-card">
|
|
39
|
+
<a class="submodule-card__link" href="installer-core.html">
|
|
40
|
+
<span class="submodule-card__name">installer-core</span>
|
|
41
|
+
<span class="submodule-card__kind">Service</span>
|
|
42
|
+
</a>
|
|
43
|
+
<p class="submodule-card__role">installLinks/syncToolkitHome/uninstallSkills: installation engine</p>
|
|
44
|
+
</li>
|
|
45
|
+
<li class="submodule-card">
|
|
46
|
+
<a class="submodule-card__link" href="tool-discovery.html">
|
|
47
|
+
<span class="submodule-card__name">tool-discovery</span>
|
|
48
|
+
<span class="submodule-card__kind">Service</span>
|
|
49
|
+
</a>
|
|
50
|
+
<p class="submodule-card__role">registerAllTools/isKnownToolName: dynamic tool loading</p>
|
|
51
|
+
</li>
|
|
52
|
+
<li class="submodule-card">
|
|
53
|
+
<a class="submodule-card__link" href="update-checker.html">
|
|
54
|
+
<span class="submodule-card__name">update-checker</span>
|
|
55
|
+
<span class="submodule-card__kind">Service</span>
|
|
56
|
+
</a>
|
|
57
|
+
<p class="submodule-card__role">checkForPackageUpdate/execCommand: npm version check</p>
|
|
58
|
+
</li>
|
|
59
|
+
</ul>
|
|
60
|
+
</section>
|
|
61
|
+
|
|
62
|
+
</main>
|
|
63
|
+
</body>
|
|
64
|
+
</html>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en" data-atlas-page="submodule">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>CLI Dispatch and Install Engine · installer-core</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
|
+
<meta name="color-scheme" content="dark">
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Geist:wght@300..700&family=JetBrains+Mono:wght@400..600&display=swap">
|
|
11
|
+
<link rel="stylesheet" href="../../assets/architecture.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<header class="submodule-header">
|
|
15
|
+
<nav class="submodule-breadcrumb"><a href="../../index.html">← Atlas</a> · <a href="index.html">← CLI Dispatch and Install Engine</a></nav>
|
|
16
|
+
<h1>installer-core <small class="submodule-kind">Service</small></h1>
|
|
17
|
+
<p class="submodule-role">installLinks/syncToolkitHome/uninstallSkills: installation engine</p>
|
|
18
|
+
|
|
19
|
+
</header>
|
|
20
|
+
<main class="submodule-main">
|
|
21
|
+
<section aria-label="Function I/O">
|
|
22
|
+
<h2>Function I/O</h2>
|
|
23
|
+
<p class="sub-section__empty">No functions recorded.</p>
|
|
24
|
+
</section>
|
|
25
|
+
<section aria-label="Variables">
|
|
26
|
+
<h2>Variables</h2>
|
|
27
|
+
<p class="sub-section__empty">No variables recorded.</p>
|
|
28
|
+
</section>
|
|
29
|
+
<section aria-label="Internal data flow">
|
|
30
|
+
<h2>Internal data flow</h2>
|
|
31
|
+
<p class="sub-dataflow__empty">No internal dataflow steps recorded.</p>
|
|
32
|
+
</section>
|
|
33
|
+
<section aria-label="Errors">
|
|
34
|
+
<h2>Errors</h2>
|
|
35
|
+
<p class="sub-section__empty">No errors recorded.</p>
|
|
36
|
+
</section>
|
|
37
|
+
</main>
|
|
38
|
+
<script src="../../assets/viewer.client.js" defer></script>
|
|
39
|
+
</body>
|
|
40
|
+
</html>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en" data-atlas-page="submodule">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>CLI Dispatch and Install Engine · tool-discovery</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
|
+
<meta name="color-scheme" content="dark">
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Geist:wght@300..700&family=JetBrains+Mono:wght@400..600&display=swap">
|
|
11
|
+
<link rel="stylesheet" href="../../assets/architecture.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<header class="submodule-header">
|
|
15
|
+
<nav class="submodule-breadcrumb"><a href="../../index.html">← Atlas</a> · <a href="index.html">← CLI Dispatch and Install Engine</a></nav>
|
|
16
|
+
<h1>tool-discovery <small class="submodule-kind">Service</small></h1>
|
|
17
|
+
<p class="submodule-role">registerAllTools/isKnownToolName: dynamic tool loading</p>
|
|
18
|
+
|
|
19
|
+
</header>
|
|
20
|
+
<main class="submodule-main">
|
|
21
|
+
<section aria-label="Function I/O">
|
|
22
|
+
<h2>Function I/O</h2>
|
|
23
|
+
<p class="sub-section__empty">No functions recorded.</p>
|
|
24
|
+
</section>
|
|
25
|
+
<section aria-label="Variables">
|
|
26
|
+
<h2>Variables</h2>
|
|
27
|
+
<p class="sub-section__empty">No variables recorded.</p>
|
|
28
|
+
</section>
|
|
29
|
+
<section aria-label="Internal data flow">
|
|
30
|
+
<h2>Internal data flow</h2>
|
|
31
|
+
<p class="sub-dataflow__empty">No internal dataflow steps recorded.</p>
|
|
32
|
+
</section>
|
|
33
|
+
<section aria-label="Errors">
|
|
34
|
+
<h2>Errors</h2>
|
|
35
|
+
<p class="sub-section__empty">No errors recorded.</p>
|
|
36
|
+
</section>
|
|
37
|
+
</main>
|
|
38
|
+
<script src="../../assets/viewer.client.js" defer></script>
|
|
39
|
+
</body>
|
|
40
|
+
</html>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en" data-atlas-page="submodule">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>CLI Dispatch and Install Engine · update-checker</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
|
+
<meta name="color-scheme" content="dark">
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Geist:wght@300..700&family=JetBrains+Mono:wght@400..600&display=swap">
|
|
11
|
+
<link rel="stylesheet" href="../../assets/architecture.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<header class="submodule-header">
|
|
15
|
+
<nav class="submodule-breadcrumb"><a href="../../index.html">← Atlas</a> · <a href="index.html">← CLI Dispatch and Install Engine</a></nav>
|
|
16
|
+
<h1>update-checker <small class="submodule-kind">Service</small></h1>
|
|
17
|
+
<p class="submodule-role">checkForPackageUpdate/execCommand: npm version check</p>
|
|
18
|
+
|
|
19
|
+
</header>
|
|
20
|
+
<main class="submodule-main">
|
|
21
|
+
<section aria-label="Function I/O">
|
|
22
|
+
<h2>Function I/O</h2>
|
|
23
|
+
<p class="sub-section__empty">No functions recorded.</p>
|
|
24
|
+
</section>
|
|
25
|
+
<section aria-label="Variables">
|
|
26
|
+
<h2>Variables</h2>
|
|
27
|
+
<p class="sub-section__empty">No variables recorded.</p>
|
|
28
|
+
</section>
|
|
29
|
+
<section aria-label="Internal data flow">
|
|
30
|
+
<h2>Internal data flow</h2>
|
|
31
|
+
<p class="sub-dataflow__empty">No internal dataflow steps recorded.</p>
|
|
32
|
+
</section>
|
|
33
|
+
<section aria-label="Errors">
|
|
34
|
+
<h2>Errors</h2>
|
|
35
|
+
<p class="sub-section__empty">No errors recorded.</p>
|
|
36
|
+
</section>
|
|
37
|
+
</main>
|
|
38
|
+
<script src="../../assets/viewer.client.js" defer></script>
|
|
39
|
+
</body>
|
|
40
|
+
</html>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en" data-atlas-page="submodule">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>Terminal UI · banner-display</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
|
+
<meta name="color-scheme" content="dark">
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Geist:wght@300..700&family=JetBrains+Mono:wght@400..600&display=swap">
|
|
11
|
+
<link rel="stylesheet" href="../../assets/architecture.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<header class="submodule-header">
|
|
15
|
+
<nav class="submodule-breadcrumb"><a href="../../index.html">← Atlas</a> · <a href="index.html">← Terminal UI</a></nav>
|
|
16
|
+
<h1>banner-display <small class="submodule-kind">Service</small></h1>
|
|
17
|
+
<p class="submodule-role">buildBanner/buildWordmark: branding display</p>
|
|
18
|
+
|
|
19
|
+
</header>
|
|
20
|
+
<main class="submodule-main">
|
|
21
|
+
<section aria-label="Function I/O">
|
|
22
|
+
<h2>Function I/O</h2>
|
|
23
|
+
<p class="sub-section__empty">No functions recorded.</p>
|
|
24
|
+
</section>
|
|
25
|
+
<section aria-label="Variables">
|
|
26
|
+
<h2>Variables</h2>
|
|
27
|
+
<p class="sub-section__empty">No variables recorded.</p>
|
|
28
|
+
</section>
|
|
29
|
+
<section aria-label="Internal data flow">
|
|
30
|
+
<h2>Internal data flow</h2>
|
|
31
|
+
<p class="sub-dataflow__empty">No internal dataflow steps recorded.</p>
|
|
32
|
+
</section>
|
|
33
|
+
<section aria-label="Errors">
|
|
34
|
+
<h2>Errors</h2>
|
|
35
|
+
<p class="sub-section__empty">No errors recorded.</p>
|
|
36
|
+
</section>
|
|
37
|
+
</main>
|
|
38
|
+
<script src="../../assets/viewer.client.js" defer></script>
|
|
39
|
+
</body>
|
|
40
|
+
</html>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en" data-atlas-page="feature">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>Terminal UI</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
|
+
<meta name="color-scheme" content="dark">
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Geist:wght@300..700&family=JetBrains+Mono:wght@400..600&display=swap">
|
|
11
|
+
<link rel="stylesheet" href="../../assets/architecture.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<header class="feature-header">
|
|
15
|
+
<nav class="feature-breadcrumb"><a href="../../index.html">← Atlas</a></nav>
|
|
16
|
+
<h1>Terminal UI</h1>
|
|
17
|
+
|
|
18
|
+
</header>
|
|
19
|
+
<main class="feature-main">
|
|
20
|
+
<section class="feature-story"><p>Terminal output formatting: ANSI color, banner/welcome screen, interactive prompts, and structured output functions</p></section>
|
|
21
|
+
<section class="feature-submodules" aria-label="Submodules">
|
|
22
|
+
<h2>Submodules</h2>
|
|
23
|
+
<ul class="submodule-nav">
|
|
24
|
+
<li class="submodule-card">
|
|
25
|
+
<a class="submodule-card__link" href="terminal-detection.html">
|
|
26
|
+
<span class="submodule-card__name">terminal-detection</span>
|
|
27
|
+
<span class="submodule-card__kind">Service</span>
|
|
28
|
+
</a>
|
|
29
|
+
<p class="submodule-card__role">isInteractive/supportsColor: TTY and color detection</p>
|
|
30
|
+
</li>
|
|
31
|
+
<li class="submodule-card">
|
|
32
|
+
<a class="submodule-card__link" href="banner-display.html">
|
|
33
|
+
<span class="submodule-card__name">banner-display</span>
|
|
34
|
+
<span class="submodule-card__kind">Service</span>
|
|
35
|
+
</a>
|
|
36
|
+
<p class="submodule-card__role">buildBanner/buildWordmark: branding display</p>
|
|
37
|
+
</li>
|
|
38
|
+
<li class="submodule-card">
|
|
39
|
+
<a class="submodule-card__link" href="interactive-prompts.html">
|
|
40
|
+
<span class="submodule-card__name">interactive-prompts</span>
|
|
41
|
+
<span class="submodule-card__kind">Service</span>
|
|
42
|
+
</a>
|
|
43
|
+
<p class="submodule-card__role">promptForModes/promptYesNo: user prompts</p>
|
|
44
|
+
</li>
|
|
45
|
+
</ul>
|
|
46
|
+
</section>
|
|
47
|
+
|
|
48
|
+
</main>
|
|
49
|
+
</body>
|
|
50
|
+
</html>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en" data-atlas-page="submodule">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>Terminal UI · interactive-prompts</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
|
+
<meta name="color-scheme" content="dark">
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Geist:wght@300..700&family=JetBrains+Mono:wght@400..600&display=swap">
|
|
11
|
+
<link rel="stylesheet" href="../../assets/architecture.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<header class="submodule-header">
|
|
15
|
+
<nav class="submodule-breadcrumb"><a href="../../index.html">← Atlas</a> · <a href="index.html">← Terminal UI</a></nav>
|
|
16
|
+
<h1>interactive-prompts <small class="submodule-kind">Service</small></h1>
|
|
17
|
+
<p class="submodule-role">promptForModes/promptYesNo: user prompts</p>
|
|
18
|
+
|
|
19
|
+
</header>
|
|
20
|
+
<main class="submodule-main">
|
|
21
|
+
<section aria-label="Function I/O">
|
|
22
|
+
<h2>Function I/O</h2>
|
|
23
|
+
<p class="sub-section__empty">No functions recorded.</p>
|
|
24
|
+
</section>
|
|
25
|
+
<section aria-label="Variables">
|
|
26
|
+
<h2>Variables</h2>
|
|
27
|
+
<p class="sub-section__empty">No variables recorded.</p>
|
|
28
|
+
</section>
|
|
29
|
+
<section aria-label="Internal data flow">
|
|
30
|
+
<h2>Internal data flow</h2>
|
|
31
|
+
<p class="sub-dataflow__empty">No internal dataflow steps recorded.</p>
|
|
32
|
+
</section>
|
|
33
|
+
<section aria-label="Errors">
|
|
34
|
+
<h2>Errors</h2>
|
|
35
|
+
<p class="sub-section__empty">No errors recorded.</p>
|
|
36
|
+
</section>
|
|
37
|
+
</main>
|
|
38
|
+
<script src="../../assets/viewer.client.js" defer></script>
|
|
39
|
+
</body>
|
|
40
|
+
</html>
|