@dynamicworks/br-openspec 1.3.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/LICENSE +22 -0
- package/README.md +210 -0
- package/README.pt-BR.md +212 -0
- package/bin/openspec.js +3 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +484 -0
- package/dist/commands/change.d.ts +35 -0
- package/dist/commands/change.js +278 -0
- package/dist/commands/completion.d.ts +72 -0
- package/dist/commands/completion.js +258 -0
- package/dist/commands/config.d.ts +36 -0
- package/dist/commands/config.js +553 -0
- package/dist/commands/feedback.d.ts +9 -0
- package/dist/commands/feedback.js +184 -0
- package/dist/commands/schema.d.ts +6 -0
- package/dist/commands/schema.js +869 -0
- package/dist/commands/show.d.ts +14 -0
- package/dist/commands/show.js +133 -0
- package/dist/commands/spec.d.ts +15 -0
- package/dist/commands/spec.js +226 -0
- package/dist/commands/tools.d.ts +11 -0
- package/dist/commands/tools.js +252 -0
- package/dist/commands/validate.d.ts +24 -0
- package/dist/commands/validate.js +295 -0
- package/dist/commands/workflow/index.d.ts +17 -0
- package/dist/commands/workflow/index.js +12 -0
- package/dist/commands/workflow/instructions.d.ts +29 -0
- package/dist/commands/workflow/instructions.js +328 -0
- package/dist/commands/workflow/new-change.d.ts +11 -0
- package/dist/commands/workflow/new-change.js +44 -0
- package/dist/commands/workflow/schemas.d.ts +10 -0
- package/dist/commands/workflow/schemas.js +35 -0
- package/dist/commands/workflow/shared.d.ts +57 -0
- package/dist/commands/workflow/shared.js +117 -0
- package/dist/commands/workflow/status.d.ts +14 -0
- package/dist/commands/workflow/status.js +76 -0
- package/dist/commands/workflow/templates.d.ts +16 -0
- package/dist/commands/workflow/templates.js +70 -0
- package/dist/core/archive.d.ts +11 -0
- package/dist/core/archive.js +322 -0
- package/dist/core/artifact-graph/graph.d.ts +56 -0
- package/dist/core/artifact-graph/graph.js +141 -0
- package/dist/core/artifact-graph/index.d.ts +8 -0
- package/dist/core/artifact-graph/index.js +14 -0
- package/dist/core/artifact-graph/instruction-loader.d.ts +143 -0
- package/dist/core/artifact-graph/instruction-loader.js +217 -0
- package/dist/core/artifact-graph/outputs.d.ts +14 -0
- package/dist/core/artifact-graph/outputs.js +39 -0
- package/dist/core/artifact-graph/resolver.d.ts +81 -0
- package/dist/core/artifact-graph/resolver.js +258 -0
- package/dist/core/artifact-graph/schema.d.ts +13 -0
- package/dist/core/artifact-graph/schema.js +108 -0
- package/dist/core/artifact-graph/state.d.ts +12 -0
- package/dist/core/artifact-graph/state.js +31 -0
- package/dist/core/artifact-graph/types.d.ts +45 -0
- package/dist/core/artifact-graph/types.js +43 -0
- package/dist/core/available-tools.d.ts +17 -0
- package/dist/core/available-tools.js +43 -0
- package/dist/core/command-generation/adapters/amazon-q.d.ts +13 -0
- package/dist/core/command-generation/adapters/amazon-q.js +26 -0
- package/dist/core/command-generation/adapters/antigravity.d.ts +13 -0
- package/dist/core/command-generation/adapters/antigravity.js +26 -0
- package/dist/core/command-generation/adapters/auggie.d.ts +13 -0
- package/dist/core/command-generation/adapters/auggie.js +27 -0
- package/dist/core/command-generation/adapters/bob.d.ts +14 -0
- package/dist/core/command-generation/adapters/bob.js +45 -0
- package/dist/core/command-generation/adapters/claude.d.ts +13 -0
- package/dist/core/command-generation/adapters/claude.js +50 -0
- package/dist/core/command-generation/adapters/cline.d.ts +14 -0
- package/dist/core/command-generation/adapters/cline.js +27 -0
- package/dist/core/command-generation/adapters/codebuddy.d.ts +13 -0
- package/dist/core/command-generation/adapters/codebuddy.js +28 -0
- package/dist/core/command-generation/adapters/codex.d.ts +16 -0
- package/dist/core/command-generation/adapters/codex.js +39 -0
- package/dist/core/command-generation/adapters/continue.d.ts +13 -0
- package/dist/core/command-generation/adapters/continue.js +28 -0
- package/dist/core/command-generation/adapters/costrict.d.ts +13 -0
- package/dist/core/command-generation/adapters/costrict.js +27 -0
- package/dist/core/command-generation/adapters/crush.d.ts +13 -0
- package/dist/core/command-generation/adapters/crush.js +30 -0
- package/dist/core/command-generation/adapters/cursor.d.ts +14 -0
- package/dist/core/command-generation/adapters/cursor.js +44 -0
- package/dist/core/command-generation/adapters/factory.d.ts +13 -0
- package/dist/core/command-generation/adapters/factory.js +27 -0
- package/dist/core/command-generation/adapters/gemini.d.ts +13 -0
- package/dist/core/command-generation/adapters/gemini.js +26 -0
- package/dist/core/command-generation/adapters/github-copilot.d.ts +13 -0
- package/dist/core/command-generation/adapters/github-copilot.js +26 -0
- package/dist/core/command-generation/adapters/iflow.d.ts +13 -0
- package/dist/core/command-generation/adapters/iflow.js +29 -0
- package/dist/core/command-generation/adapters/index.d.ts +32 -0
- package/dist/core/command-generation/adapters/index.js +32 -0
- package/dist/core/command-generation/adapters/junie.d.ts +13 -0
- package/dist/core/command-generation/adapters/junie.js +26 -0
- package/dist/core/command-generation/adapters/kilocode.d.ts +14 -0
- package/dist/core/command-generation/adapters/kilocode.js +23 -0
- package/dist/core/command-generation/adapters/kiro.d.ts +13 -0
- package/dist/core/command-generation/adapters/kiro.js +26 -0
- package/dist/core/command-generation/adapters/lingma.d.ts +13 -0
- package/dist/core/command-generation/adapters/lingma.js +30 -0
- package/dist/core/command-generation/adapters/opencode.d.ts +13 -0
- package/dist/core/command-generation/adapters/opencode.js +29 -0
- package/dist/core/command-generation/adapters/pi.d.ts +18 -0
- package/dist/core/command-generation/adapters/pi.js +55 -0
- package/dist/core/command-generation/adapters/qoder.d.ts +13 -0
- package/dist/core/command-generation/adapters/qoder.js +30 -0
- package/dist/core/command-generation/adapters/qwen.d.ts +13 -0
- package/dist/core/command-generation/adapters/qwen.js +26 -0
- package/dist/core/command-generation/adapters/roocode.d.ts +14 -0
- package/dist/core/command-generation/adapters/roocode.js +27 -0
- package/dist/core/command-generation/adapters/windsurf.d.ts +14 -0
- package/dist/core/command-generation/adapters/windsurf.js +51 -0
- package/dist/core/command-generation/generator.d.ts +21 -0
- package/dist/core/command-generation/generator.js +27 -0
- package/dist/core/command-generation/index.d.ts +22 -0
- package/dist/core/command-generation/index.js +24 -0
- package/dist/core/command-generation/registry.d.ts +36 -0
- package/dist/core/command-generation/registry.js +98 -0
- package/dist/core/command-generation/types.d.ts +56 -0
- package/dist/core/command-generation/types.js +8 -0
- package/dist/core/completions/command-registry.d.ts +7 -0
- package/dist/core/completions/command-registry.js +462 -0
- package/dist/core/completions/completion-provider.d.ts +60 -0
- package/dist/core/completions/completion-provider.js +102 -0
- package/dist/core/completions/factory.d.ts +64 -0
- package/dist/core/completions/factory.js +75 -0
- package/dist/core/completions/generators/bash-generator.d.ts +32 -0
- package/dist/core/completions/generators/bash-generator.js +174 -0
- package/dist/core/completions/generators/fish-generator.d.ts +32 -0
- package/dist/core/completions/generators/fish-generator.js +157 -0
- package/dist/core/completions/generators/powershell-generator.d.ts +33 -0
- package/dist/core/completions/generators/powershell-generator.js +208 -0
- package/dist/core/completions/generators/zsh-generator.d.ts +44 -0
- package/dist/core/completions/generators/zsh-generator.js +250 -0
- package/dist/core/completions/installers/bash-installer.d.ts +87 -0
- package/dist/core/completions/installers/bash-installer.js +319 -0
- package/dist/core/completions/installers/fish-installer.d.ts +43 -0
- package/dist/core/completions/installers/fish-installer.js +143 -0
- package/dist/core/completions/installers/powershell-installer.d.ts +102 -0
- package/dist/core/completions/installers/powershell-installer.js +400 -0
- package/dist/core/completions/installers/zsh-installer.d.ts +125 -0
- package/dist/core/completions/installers/zsh-installer.js +450 -0
- package/dist/core/completions/templates/bash-templates.d.ts +6 -0
- package/dist/core/completions/templates/bash-templates.js +24 -0
- package/dist/core/completions/templates/fish-templates.d.ts +7 -0
- package/dist/core/completions/templates/fish-templates.js +39 -0
- package/dist/core/completions/templates/powershell-templates.d.ts +6 -0
- package/dist/core/completions/templates/powershell-templates.js +25 -0
- package/dist/core/completions/templates/zsh-templates.d.ts +6 -0
- package/dist/core/completions/templates/zsh-templates.js +36 -0
- package/dist/core/completions/types.d.ts +79 -0
- package/dist/core/completions/types.js +2 -0
- package/dist/core/config-prompts.d.ts +9 -0
- package/dist/core/config-prompts.js +34 -0
- package/dist/core/config-schema.d.ts +86 -0
- package/dist/core/config-schema.js +213 -0
- package/dist/core/config.d.ts +18 -0
- package/dist/core/config.js +38 -0
- package/dist/core/converters/json-converter.d.ts +6 -0
- package/dist/core/converters/json-converter.js +51 -0
- package/dist/core/global-config.d.ts +44 -0
- package/dist/core/global-config.js +125 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.js +3 -0
- package/dist/core/init.d.ts +37 -0
- package/dist/core/init.js +549 -0
- package/dist/core/is-project-initialized.d.ts +12 -0
- package/dist/core/is-project-initialized.js +18 -0
- package/dist/core/legacy-cleanup.d.ts +162 -0
- package/dist/core/legacy-cleanup.js +515 -0
- package/dist/core/list.d.ts +9 -0
- package/dist/core/list.js +172 -0
- package/dist/core/migration.d.ts +23 -0
- package/dist/core/migration.js +109 -0
- package/dist/core/parsers/change-parser.d.ts +13 -0
- package/dist/core/parsers/change-parser.js +197 -0
- package/dist/core/parsers/markdown-parser.d.ts +26 -0
- package/dist/core/parsers/markdown-parser.js +228 -0
- package/dist/core/parsers/requirement-blocks.d.ts +37 -0
- package/dist/core/parsers/requirement-blocks.js +201 -0
- package/dist/core/parsers/spec-structure.d.ts +9 -0
- package/dist/core/parsers/spec-structure.js +88 -0
- package/dist/core/profile-sync-drift.d.ts +38 -0
- package/dist/core/profile-sync-drift.js +200 -0
- package/dist/core/profiles.d.ts +26 -0
- package/dist/core/profiles.js +40 -0
- package/dist/core/project-config.d.ts +64 -0
- package/dist/core/project-config.js +224 -0
- package/dist/core/schemas/base.schema.d.ts +13 -0
- package/dist/core/schemas/base.schema.js +13 -0
- package/dist/core/schemas/change.schema.d.ts +73 -0
- package/dist/core/schemas/change.schema.js +31 -0
- package/dist/core/schemas/index.d.ts +4 -0
- package/dist/core/schemas/index.js +4 -0
- package/dist/core/schemas/spec.schema.d.ts +18 -0
- package/dist/core/schemas/spec.schema.js +15 -0
- package/dist/core/shared/index.d.ts +8 -0
- package/dist/core/shared/index.js +8 -0
- package/dist/core/shared/skill-generation.d.ts +49 -0
- package/dist/core/shared/skill-generation.js +96 -0
- package/dist/core/shared/tool-detection.d.ts +71 -0
- package/dist/core/shared/tool-detection.js +158 -0
- package/dist/core/specs-apply.d.ts +73 -0
- package/dist/core/specs-apply.js +393 -0
- package/dist/core/styles/palette.d.ts +7 -0
- package/dist/core/styles/palette.js +8 -0
- package/dist/core/templates/index.d.ts +8 -0
- package/dist/core/templates/index.js +9 -0
- package/dist/core/templates/skill-templates.d.ts +20 -0
- package/dist/core/templates/skill-templates.js +19 -0
- package/dist/core/templates/types.d.ts +19 -0
- package/dist/core/templates/types.js +5 -0
- package/dist/core/templates/workflows/apply-change.d.ts +10 -0
- package/dist/core/templates/workflows/apply-change.js +308 -0
- package/dist/core/templates/workflows/archive-change.d.ts +10 -0
- package/dist/core/templates/workflows/archive-change.js +271 -0
- package/dist/core/templates/workflows/bulk-archive-change.d.ts +10 -0
- package/dist/core/templates/workflows/bulk-archive-change.js +492 -0
- package/dist/core/templates/workflows/continue-change.d.ts +10 -0
- package/dist/core/templates/workflows/continue-change.js +232 -0
- package/dist/core/templates/workflows/explore.d.ts +10 -0
- package/dist/core/templates/workflows/explore.js +463 -0
- package/dist/core/templates/workflows/feedback.d.ts +9 -0
- package/dist/core/templates/workflows/feedback.js +108 -0
- package/dist/core/templates/workflows/ff-change.d.ts +10 -0
- package/dist/core/templates/workflows/ff-change.js +198 -0
- package/dist/core/templates/workflows/new-change.d.ts +10 -0
- package/dist/core/templates/workflows/new-change.js +21 -0
- package/dist/core/templates/workflows/onboard.d.ts +10 -0
- package/dist/core/templates/workflows/onboard.js +21 -0
- package/dist/core/templates/workflows/propose.d.ts +10 -0
- package/dist/core/templates/workflows/propose.js +216 -0
- package/dist/core/templates/workflows/sync-specs.d.ts +10 -0
- package/dist/core/templates/workflows/sync-specs.js +272 -0
- package/dist/core/templates/workflows/upstream-sync.d.ts +10 -0
- package/dist/core/templates/workflows/upstream-sync.js +116 -0
- package/dist/core/templates/workflows/verify-change.d.ts +10 -0
- package/dist/core/templates/workflows/verify-change.js +21 -0
- package/dist/core/tools-manager.d.ts +56 -0
- package/dist/core/tools-manager.js +215 -0
- package/dist/core/update.d.ts +77 -0
- package/dist/core/update.js +538 -0
- package/dist/core/validation/constants.d.ts +34 -0
- package/dist/core/validation/constants.js +40 -0
- package/dist/core/validation/types.d.ts +18 -0
- package/dist/core/validation/types.js +2 -0
- package/dist/core/validation/validator.d.ts +33 -0
- package/dist/core/validation/validator.js +419 -0
- package/dist/core/view.d.ts +8 -0
- package/dist/core/view.js +169 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/messages/index.d.ts +867 -0
- package/dist/messages/index.js +1960 -0
- package/dist/prompts/searchable-multi-select.d.ts +28 -0
- package/dist/prompts/searchable-multi-select.js +160 -0
- package/dist/telemetry/config.d.ts +38 -0
- package/dist/telemetry/config.js +136 -0
- package/dist/telemetry/index.d.ts +31 -0
- package/dist/telemetry/index.js +165 -0
- package/dist/ui/ascii-patterns.d.ts +16 -0
- package/dist/ui/ascii-patterns.js +133 -0
- package/dist/ui/welcome-screen.d.ts +10 -0
- package/dist/ui/welcome-screen.js +147 -0
- package/dist/utils/change-metadata.d.ts +51 -0
- package/dist/utils/change-metadata.js +147 -0
- package/dist/utils/change-utils.d.ts +62 -0
- package/dist/utils/change-utils.js +121 -0
- package/dist/utils/command-references.d.ts +18 -0
- package/dist/utils/command-references.js +20 -0
- package/dist/utils/file-system.d.ts +41 -0
- package/dist/utils/file-system.js +302 -0
- package/dist/utils/index.d.ts +6 -0
- package/dist/utils/index.js +9 -0
- package/dist/utils/interactive.d.ts +18 -0
- package/dist/utils/interactive.js +21 -0
- package/dist/utils/item-discovery.d.ts +4 -0
- package/dist/utils/item-discovery.js +72 -0
- package/dist/utils/match.d.ts +3 -0
- package/dist/utils/match.js +22 -0
- package/dist/utils/shell-detection.d.ts +20 -0
- package/dist/utils/shell-detection.js +41 -0
- package/dist/utils/task-progress.d.ts +8 -0
- package/dist/utils/task-progress.js +37 -0
- package/package.json +84 -0
- package/schemas/spec-driven/schema.yaml +153 -0
- package/schemas/spec-driven/templates/design.md +19 -0
- package/schemas/spec-driven/templates/proposal.md +23 -0
- package/schemas/spec-driven/templates/spec.md +8 -0
- package/schemas/spec-driven/templates/tasks.md +9 -0
- package/scripts/postinstall.js +83 -0
|
@@ -0,0 +1,867 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Catálogo centralizado de mensagens do BR-OpenSpec em Português Brasileiro.
|
|
3
|
+
*
|
|
4
|
+
* Este módulo reúne todas as mensagens exibidas ao usuário para facilitar
|
|
5
|
+
* manutenção, revisão e consistência linguística.
|
|
6
|
+
*/
|
|
7
|
+
export declare const CLI_DESCRIPTIONS: {
|
|
8
|
+
root: string;
|
|
9
|
+
init: string;
|
|
10
|
+
experimental: string;
|
|
11
|
+
update: string;
|
|
12
|
+
list: string;
|
|
13
|
+
view: string;
|
|
14
|
+
change: string;
|
|
15
|
+
changeShow: string;
|
|
16
|
+
changeList: string;
|
|
17
|
+
changeValidate: string;
|
|
18
|
+
archive: string;
|
|
19
|
+
spec: string;
|
|
20
|
+
specShow: string;
|
|
21
|
+
specList: string;
|
|
22
|
+
specValidate: string;
|
|
23
|
+
validate: string;
|
|
24
|
+
show: string;
|
|
25
|
+
feedback: string;
|
|
26
|
+
completion: string;
|
|
27
|
+
completionGenerate: string;
|
|
28
|
+
completionInstall: string;
|
|
29
|
+
completionUninstall: string;
|
|
30
|
+
__complete: string;
|
|
31
|
+
status: string;
|
|
32
|
+
instructions: string;
|
|
33
|
+
templates: string;
|
|
34
|
+
schemas: string;
|
|
35
|
+
new: string;
|
|
36
|
+
newChange: string;
|
|
37
|
+
noColor: string;
|
|
38
|
+
tools: (availableToolIds: string) => string;
|
|
39
|
+
force: string;
|
|
40
|
+
profile: string;
|
|
41
|
+
experimentalTool: string;
|
|
42
|
+
experimentalNoInteractive: string;
|
|
43
|
+
toolsOption: string;
|
|
44
|
+
updateForce: string;
|
|
45
|
+
listSpecs: string;
|
|
46
|
+
listChanges: string;
|
|
47
|
+
listSort: string;
|
|
48
|
+
listJson: string;
|
|
49
|
+
changeShowJson: string;
|
|
50
|
+
changeShowDeltasOnly: string;
|
|
51
|
+
changeShowRequirementsOnly: string;
|
|
52
|
+
changeShowNoInteractive: string;
|
|
53
|
+
changeValidateStrict: string;
|
|
54
|
+
changeValidateJson: string;
|
|
55
|
+
changeValidateNoInteractive: string;
|
|
56
|
+
changeListJson: string;
|
|
57
|
+
changeListLong: string;
|
|
58
|
+
archiveYes: string;
|
|
59
|
+
yesSkipConfirm: string;
|
|
60
|
+
archiveSkipSpecs: string;
|
|
61
|
+
archiveNoValidate: string;
|
|
62
|
+
validateAll: string;
|
|
63
|
+
validateChanges: string;
|
|
64
|
+
validateSpecs: string;
|
|
65
|
+
validateType: string;
|
|
66
|
+
validateStrict: string;
|
|
67
|
+
validateJson: string;
|
|
68
|
+
validateConcurrency: string;
|
|
69
|
+
validateNoInteractive: string;
|
|
70
|
+
showJson: string;
|
|
71
|
+
showType: string;
|
|
72
|
+
showDeltasOnly: string;
|
|
73
|
+
showRequirementsOnly: string;
|
|
74
|
+
showRequirements: string;
|
|
75
|
+
showNoScenarios: string;
|
|
76
|
+
showRequirement: string;
|
|
77
|
+
showNoInteractive: string;
|
|
78
|
+
feedbackBody: string;
|
|
79
|
+
completionVerbose: string;
|
|
80
|
+
statusChange: string;
|
|
81
|
+
statusSchema: string;
|
|
82
|
+
statusJson: string;
|
|
83
|
+
instructionsChange: string;
|
|
84
|
+
instructionsSchema: string;
|
|
85
|
+
instructionsJson: string;
|
|
86
|
+
templatesSchema: (defaultSchema: string) => string;
|
|
87
|
+
templatesJson: string;
|
|
88
|
+
schemasJson: string;
|
|
89
|
+
newChangeDescription: string;
|
|
90
|
+
newChangeSchema: (defaultSchema: string) => string;
|
|
91
|
+
specShowJson: string;
|
|
92
|
+
specShowRequirements: string;
|
|
93
|
+
specShowNoScenarios: string;
|
|
94
|
+
specShowRequirement: string;
|
|
95
|
+
specShowNoInteractive: string;
|
|
96
|
+
specListJson: string;
|
|
97
|
+
specListLong: string;
|
|
98
|
+
specValidateStrict: string;
|
|
99
|
+
specValidateJson: string;
|
|
100
|
+
specValidateNoInteractive: string;
|
|
101
|
+
};
|
|
102
|
+
export declare const CLI_MESSAGES: {
|
|
103
|
+
unknownError: string;
|
|
104
|
+
notADirectory: (path: string) => string;
|
|
105
|
+
directoryWillBeCreated: (path: string) => string;
|
|
106
|
+
cannotAccessPath: (path: string, err: string) => string;
|
|
107
|
+
experimentalDeprecated: string;
|
|
108
|
+
error: (err: string) => string;
|
|
109
|
+
changeCommandsDeprecated: string;
|
|
110
|
+
specCommandsDeprecated: string;
|
|
111
|
+
changeListDeprecated: string;
|
|
112
|
+
projectLocalNotImplemented: string;
|
|
113
|
+
};
|
|
114
|
+
export declare const CHANGE_MESSAGES: {
|
|
115
|
+
selectChangeToShow: string;
|
|
116
|
+
noChangeSpecifiedNoActive: string;
|
|
117
|
+
missingWhySection: string;
|
|
118
|
+
missingWhatChangesSection: string;
|
|
119
|
+
noChangeSpecifiedAvailable: (ids: string) => string;
|
|
120
|
+
hintViewChanges: string;
|
|
121
|
+
changeNotFound: (name: string, path: string) => string;
|
|
122
|
+
requirementsOnlyDeprecated: string;
|
|
123
|
+
noItemsFound: string;
|
|
124
|
+
selectChangeToValidate: string;
|
|
125
|
+
changeIsValid: (name: string) => string;
|
|
126
|
+
changeHasIssues: (name: string) => string;
|
|
127
|
+
nextSteps: string;
|
|
128
|
+
ensureDeltasInSpecs: string;
|
|
129
|
+
eachRequirementNeedsScenario: string;
|
|
130
|
+
debugParsedDeltas: string;
|
|
131
|
+
unableToRead: string;
|
|
132
|
+
tasks: (completed: number, total: number) => string;
|
|
133
|
+
deltas: (count: number) => string;
|
|
134
|
+
};
|
|
135
|
+
export declare const SPEC_MESSAGES: {
|
|
136
|
+
selectSpecToShow: string;
|
|
137
|
+
missingSpecId: string;
|
|
138
|
+
missingPurposeSection: string;
|
|
139
|
+
missingRequirementsSection: string;
|
|
140
|
+
specNotFound: (id: string) => string;
|
|
141
|
+
requirementsAndRequirementConflict: string;
|
|
142
|
+
requirementNotFound: (id: string) => string;
|
|
143
|
+
specIsValid: (id: string) => string;
|
|
144
|
+
specHasIssues: (id: string) => string;
|
|
145
|
+
noItemsFound: string;
|
|
146
|
+
requirementCount: (count: number) => string;
|
|
147
|
+
selectSpecToValidate: string;
|
|
148
|
+
};
|
|
149
|
+
export declare const SHOW_MESSAGES: {
|
|
150
|
+
whatToShow: string;
|
|
151
|
+
optionChange: string;
|
|
152
|
+
optionSpec: string;
|
|
153
|
+
noChangesFound: string;
|
|
154
|
+
noSpecsFound: string;
|
|
155
|
+
pickChange: string;
|
|
156
|
+
pickSpec: string;
|
|
157
|
+
nothingToShow: string;
|
|
158
|
+
showItemHint: string;
|
|
159
|
+
showChangeHint: string;
|
|
160
|
+
showSpecHint: string;
|
|
161
|
+
runInteractiveHint: string;
|
|
162
|
+
unknownItem: (name: string) => string;
|
|
163
|
+
didYouMean: (suggestions: string) => string;
|
|
164
|
+
ambiguousItem: (name: string) => string;
|
|
165
|
+
passTypeHint: string;
|
|
166
|
+
ignoringFlags: (type: string, flags: string) => string;
|
|
167
|
+
};
|
|
168
|
+
export declare const VALIDATE_MESSAGES: {
|
|
169
|
+
whatToValidate: string;
|
|
170
|
+
optionAll: string;
|
|
171
|
+
optionAllChanges: string;
|
|
172
|
+
optionAllSpecs: string;
|
|
173
|
+
optionPickOne: string;
|
|
174
|
+
pickAnItem: string;
|
|
175
|
+
noItemsToValidate: string;
|
|
176
|
+
nothingToValidate: string;
|
|
177
|
+
validateAllHint: string;
|
|
178
|
+
validateChangesHint: string;
|
|
179
|
+
validateSpecsHint: string;
|
|
180
|
+
validateItemHint: string;
|
|
181
|
+
runInteractiveHint: string;
|
|
182
|
+
unknownItem: (name: string) => string;
|
|
183
|
+
didYouMean: (suggestions: string) => string;
|
|
184
|
+
ambiguousItem: (name: string) => string;
|
|
185
|
+
passTypeHint: string;
|
|
186
|
+
changeIsValid: (id: string) => string;
|
|
187
|
+
specIsValid: (id: string) => string;
|
|
188
|
+
changeHasIssues: (id: string) => string;
|
|
189
|
+
specHasIssues: (id: string) => string;
|
|
190
|
+
nextStepsChange: string;
|
|
191
|
+
ensureDeltasInSpecs: string;
|
|
192
|
+
eachRequirementNeedsScenario: string;
|
|
193
|
+
debugParsedDeltas: string;
|
|
194
|
+
nextStepsSpec: string;
|
|
195
|
+
ensurePurposeAndRequirements: string;
|
|
196
|
+
requirementScenarioBullet: string;
|
|
197
|
+
rerunWithJson: string;
|
|
198
|
+
validating: string;
|
|
199
|
+
validatingProgress: (current: number, total: number) => string;
|
|
200
|
+
noItemsFoundToValidate: string;
|
|
201
|
+
totals: (passed: number, failed: number, total: number) => string;
|
|
202
|
+
passed: string;
|
|
203
|
+
failed: string;
|
|
204
|
+
};
|
|
205
|
+
export declare const LIST_MESSAGES: {
|
|
206
|
+
noChangesDir: string;
|
|
207
|
+
noActiveChanges: string;
|
|
208
|
+
noSpecsFound: string;
|
|
209
|
+
changesHeader: string;
|
|
210
|
+
specsHeader: string;
|
|
211
|
+
relativeTime: {
|
|
212
|
+
justNow: string;
|
|
213
|
+
minutesAgo: (m: number) => string;
|
|
214
|
+
hoursAgo: (h: number) => string;
|
|
215
|
+
daysAgo: (d: number) => string;
|
|
216
|
+
};
|
|
217
|
+
requirements: (count: number) => string;
|
|
218
|
+
statusLabels: {
|
|
219
|
+
noTasks: string;
|
|
220
|
+
complete: string;
|
|
221
|
+
inProgress: string;
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
export declare const VIEW_MESSAGES: {
|
|
225
|
+
noOpenspecDir: string;
|
|
226
|
+
dashboardTitle: string;
|
|
227
|
+
draftChanges: string;
|
|
228
|
+
activeChanges: string;
|
|
229
|
+
completedChanges: string;
|
|
230
|
+
specifications: string;
|
|
231
|
+
summary: string;
|
|
232
|
+
specsSummary: (totalSpecs: number, totalRequirements: number) => string;
|
|
233
|
+
draftChangesCount: (count: number) => string;
|
|
234
|
+
activeChangesCount: (count: number) => string;
|
|
235
|
+
completedChangesCount: (count: number) => string;
|
|
236
|
+
taskProgress: (completed: number, total: number, percentage: number) => string;
|
|
237
|
+
requirementLabel: (count: number) => "requisito" | "requisitos";
|
|
238
|
+
listHint: (cmd: string) => string;
|
|
239
|
+
listHintCommands: (cmd1: string, cmd2: string) => string;
|
|
240
|
+
};
|
|
241
|
+
export declare const ARCHIVE_MESSAGES: {
|
|
242
|
+
noChangesDir: string;
|
|
243
|
+
changeNotFound: (name: string) => string;
|
|
244
|
+
noChangeSelected: string;
|
|
245
|
+
noActiveChanges: string;
|
|
246
|
+
selectChangeToArchive: string;
|
|
247
|
+
proposalWarnings: string;
|
|
248
|
+
validationErrorsInDeltas: string;
|
|
249
|
+
validationFailed: string;
|
|
250
|
+
skipValidationHint: string;
|
|
251
|
+
skipValidationWarning: string;
|
|
252
|
+
archiveCancelled: string;
|
|
253
|
+
skipValidationLog: (timestamp: string, name: string) => string;
|
|
254
|
+
affectedFiles: (path: string) => string;
|
|
255
|
+
skipValidationFlagWarning: string;
|
|
256
|
+
taskStatus: (status: string) => string;
|
|
257
|
+
incompleteTasksWarning: (count: number) => string;
|
|
258
|
+
incompleteTasksContinuing: (count: number) => string;
|
|
259
|
+
skipSpecUpdates: string;
|
|
260
|
+
specsToUpdate: string;
|
|
261
|
+
actionUpdate: string;
|
|
262
|
+
actionCreate: string;
|
|
263
|
+
specUpdateStatus: (capability: string, status: string) => string;
|
|
264
|
+
proceedWithSpecUpdates: string;
|
|
265
|
+
skipSpecUpdatesProceeding: string;
|
|
266
|
+
validationErrorsInRebuiltSpec: (name: string) => string;
|
|
267
|
+
abortedNoChanges: string;
|
|
268
|
+
totals: (added: number, modified: number, removed: number, renamed: number) => string;
|
|
269
|
+
specsUpdatedSuccessfully: string;
|
|
270
|
+
archiveAlreadyExists: (name: string) => string;
|
|
271
|
+
changeArchived: (changeName: string, archiveName: string) => string;
|
|
272
|
+
removedRequirementsIgnored: (specName: string, count: number) => string;
|
|
273
|
+
};
|
|
274
|
+
export declare const INIT_MESSAGES: {
|
|
275
|
+
welcomeTitle: string;
|
|
276
|
+
welcomeSubtitle: string;
|
|
277
|
+
setupWillConfigure: string;
|
|
278
|
+
agentSkills: string;
|
|
279
|
+
slashCommands: string;
|
|
280
|
+
quickStart: string;
|
|
281
|
+
cmdNewChange: string;
|
|
282
|
+
cmdContinue: string;
|
|
283
|
+
cmdApply: string;
|
|
284
|
+
pressEnter: string;
|
|
285
|
+
insufficientPermissions: (path: string) => string;
|
|
286
|
+
invalidProfile: (profile: string) => string;
|
|
287
|
+
upgradeLegacyPrompt: string;
|
|
288
|
+
initializationCancelled: string;
|
|
289
|
+
skipPromptHint: string;
|
|
290
|
+
cleaningLegacy: string;
|
|
291
|
+
legacyCleaned: string;
|
|
292
|
+
noToolsDetected: (tools: string) => string;
|
|
293
|
+
noToolsAvailable: string;
|
|
294
|
+
selectToolsPrompt: (count: number) => string;
|
|
295
|
+
selectAtLeastOneTool: string;
|
|
296
|
+
atLeastOneToolRequired: string;
|
|
297
|
+
toolsOptionRequired: string;
|
|
298
|
+
toolsOptionRequiresToolId: string;
|
|
299
|
+
cannotCombineReservedValues: string;
|
|
300
|
+
invalidTools: (invalid: string, available: string) => string;
|
|
301
|
+
unknownTool: (toolId: string, validTools: string) => string;
|
|
302
|
+
toolNoSkillSupport: (toolId: string, validTools: string) => string;
|
|
303
|
+
creatingStructure: string;
|
|
304
|
+
structureCreated: string;
|
|
305
|
+
settingUp: (name: string) => string;
|
|
306
|
+
setupComplete: (name: string) => string;
|
|
307
|
+
setupFailed: (name: string) => string;
|
|
308
|
+
setupCompleteTitle: string;
|
|
309
|
+
created: (names: string) => string;
|
|
310
|
+
refreshed: (names: string) => string;
|
|
311
|
+
failed: (errors: string) => string;
|
|
312
|
+
commandsSkipped: (tools: string) => string;
|
|
313
|
+
removedCommands: (count: number) => string;
|
|
314
|
+
removedSkills: (count: number) => string;
|
|
315
|
+
skillsAndCommandsCount: (skills: number, commands: number, dirs: string) => string;
|
|
316
|
+
skillsCount: (skills: number, dirs: string) => string;
|
|
317
|
+
commandsCount: (commands: number, dirs: string) => string;
|
|
318
|
+
configCreated: (schema: string) => string;
|
|
319
|
+
configExists: (name: string) => string;
|
|
320
|
+
configSkipped: string;
|
|
321
|
+
gettingStarted: string;
|
|
322
|
+
startFirstChangePropose: (cmd: string) => string;
|
|
323
|
+
startFirstChangeNew: (cmd: string) => string;
|
|
324
|
+
configureWorkflowsHint: string;
|
|
325
|
+
learnMore: (url: string) => string;
|
|
326
|
+
feedback: (url: string) => string;
|
|
327
|
+
restartIDE: string;
|
|
328
|
+
configuredPreselected: (names: string) => string;
|
|
329
|
+
detectedToolsLabel: (names: string, label: string) => string;
|
|
330
|
+
preselectedFirstTime: string;
|
|
331
|
+
notPreselected: string;
|
|
332
|
+
};
|
|
333
|
+
export declare const TOOLS_MESSAGES: {
|
|
334
|
+
notInitialized: string;
|
|
335
|
+
noToolsToAdd: string;
|
|
336
|
+
noToolsToRemove: string;
|
|
337
|
+
adding: (name: string) => string;
|
|
338
|
+
added: (name: string) => string;
|
|
339
|
+
failedToAdd: (name: string) => string;
|
|
340
|
+
addedList: (names: string) => string;
|
|
341
|
+
failedList: (items: string) => string;
|
|
342
|
+
restartIDE: string;
|
|
343
|
+
removing: (name: string) => string;
|
|
344
|
+
removed: (name: string) => string;
|
|
345
|
+
failedToRemove: (name: string) => string;
|
|
346
|
+
removedList: (names: string) => string;
|
|
347
|
+
removedCounts: (skills: number, commands: number) => string;
|
|
348
|
+
currentlyConfigured: (names: string) => string;
|
|
349
|
+
noToolsConfigured: string;
|
|
350
|
+
selectToolsToConfigure: (count: number) => string;
|
|
351
|
+
noChanges: string;
|
|
352
|
+
description: string;
|
|
353
|
+
addOption: string;
|
|
354
|
+
removeOption: string;
|
|
355
|
+
cannotAddAndRemoveSame: (tools: string) => string;
|
|
356
|
+
noFlagNonInteractive: string;
|
|
357
|
+
addRemoveRequiresValue: string;
|
|
358
|
+
cannotCombineReserved: string;
|
|
359
|
+
invalidTools: (invalid: string, available: string) => string;
|
|
360
|
+
};
|
|
361
|
+
export declare const CONFIG_MESSAGES: {
|
|
362
|
+
viewAndModify: string;
|
|
363
|
+
showLocation: string;
|
|
364
|
+
showAllSettings: string;
|
|
365
|
+
getValue: string;
|
|
366
|
+
setValue: string;
|
|
367
|
+
removeKey: string;
|
|
368
|
+
resetConfig: string;
|
|
369
|
+
openInEditor: string;
|
|
370
|
+
configureProfile: string;
|
|
371
|
+
schemaDescription: string;
|
|
372
|
+
selectArtifacts: string;
|
|
373
|
+
setAsDefaultSchema: string;
|
|
374
|
+
resetConfirm: string;
|
|
375
|
+
whatToConfigure: string;
|
|
376
|
+
deliveryMode: string;
|
|
377
|
+
selectWorkflows: string;
|
|
378
|
+
applyChangesNow: string;
|
|
379
|
+
profileSettings: string;
|
|
380
|
+
invalidConfigKey: (key: string, reason: string) => string;
|
|
381
|
+
useConfigList: string;
|
|
382
|
+
passAllowUnknown: string;
|
|
383
|
+
invalidConfiguration: (error: string) => string;
|
|
384
|
+
setKeyValue: (key: string, value: string) => string;
|
|
385
|
+
unsetKey: (key: string) => string;
|
|
386
|
+
keyNotSet: (key: string) => string;
|
|
387
|
+
resetAllRequired: string;
|
|
388
|
+
resetUsage: string;
|
|
389
|
+
resetCancelled: string;
|
|
390
|
+
configurationReset: string;
|
|
391
|
+
noEditorConfigured: string;
|
|
392
|
+
setEditorEnv: string;
|
|
393
|
+
editorExample: string;
|
|
394
|
+
configFileNotFound: (path: string) => string;
|
|
395
|
+
invalidJson: (path: string) => string;
|
|
396
|
+
unableToValidateConfig: (error: string) => string;
|
|
397
|
+
configUpdated: string;
|
|
398
|
+
unknownProfilePreset: (preset: string) => string;
|
|
399
|
+
interactiveModeRequired: string;
|
|
400
|
+
currentProfileSettings: string;
|
|
401
|
+
profileLabel: (profile: string | undefined, source: string) => string;
|
|
402
|
+
deliveryLabel: (delivery: string | undefined, source?: string) => string;
|
|
403
|
+
workflowsLabel: (summary: string) => string;
|
|
404
|
+
workflowsSelectedCount: (count: number, profile: string) => string;
|
|
405
|
+
workflowsAdded: (names: string) => string;
|
|
406
|
+
workflowsRemoved: (names: string) => string;
|
|
407
|
+
workflowsDiffLabel: (changes: string) => string;
|
|
408
|
+
workflowLabel: (name: string) => string;
|
|
409
|
+
coreWorkflowsNote: (workflows: string) => string;
|
|
410
|
+
explicitWorkflowsNote: (workflows: string) => string;
|
|
411
|
+
noWorkflowsNote: string;
|
|
412
|
+
deliveryHelp: string;
|
|
413
|
+
workflowsHelp: string;
|
|
414
|
+
deliveryAndWorkflows: string;
|
|
415
|
+
deliveryAndWorkflowsDesc: string;
|
|
416
|
+
deliveryOnly: string;
|
|
417
|
+
deliveryOnlyDesc: string;
|
|
418
|
+
workflowsOnly: string;
|
|
419
|
+
workflowsOnlyDesc: string;
|
|
420
|
+
keepCurrentSettings: string;
|
|
421
|
+
keepCurrentSettingsDesc: string;
|
|
422
|
+
noConfigChanges: string;
|
|
423
|
+
warningGlobalConfigNotApplied: string;
|
|
424
|
+
bothSkillsAndCommands: string;
|
|
425
|
+
bothSkillsAndCommandsDesc: string;
|
|
426
|
+
skillsOnly: string;
|
|
427
|
+
skillsOnlyDesc: string;
|
|
428
|
+
commandsOnly: string;
|
|
429
|
+
commandsOnlyDesc: string;
|
|
430
|
+
currentSuffix: string;
|
|
431
|
+
configChanges: string;
|
|
432
|
+
updateFailed: string;
|
|
433
|
+
configProfileCancelled: string;
|
|
434
|
+
spaceToToggle: string;
|
|
435
|
+
configScopeOption: string;
|
|
436
|
+
forceStringOption: string;
|
|
437
|
+
allowUnknownOption: string;
|
|
438
|
+
resetAllOption: string;
|
|
439
|
+
skipConfirmationOption: string;
|
|
440
|
+
outputAsJson: string;
|
|
441
|
+
workflowProposeName: string;
|
|
442
|
+
workflowProposeDesc: string;
|
|
443
|
+
workflowExploreName: string;
|
|
444
|
+
workflowExploreDesc: string;
|
|
445
|
+
workflowNewName: string;
|
|
446
|
+
workflowNewDesc: string;
|
|
447
|
+
workflowContinueName: string;
|
|
448
|
+
workflowContinueDesc: string;
|
|
449
|
+
workflowApplyName: string;
|
|
450
|
+
workflowApplyDesc: string;
|
|
451
|
+
workflowFastForwardName: string;
|
|
452
|
+
workflowFastForwardDesc: string;
|
|
453
|
+
workflowSyncName: string;
|
|
454
|
+
workflowSyncDesc: string;
|
|
455
|
+
workflowArchiveName: string;
|
|
456
|
+
workflowArchiveDesc: string;
|
|
457
|
+
workflowBulkArchiveName: string;
|
|
458
|
+
workflowBulkArchiveDesc: string;
|
|
459
|
+
workflowVerifyName: string;
|
|
460
|
+
workflowVerifyDesc: string;
|
|
461
|
+
workflowOnboardName: string;
|
|
462
|
+
workflowOnboardDesc: string;
|
|
463
|
+
};
|
|
464
|
+
export declare const SCHEMA_MESSAGES: {
|
|
465
|
+
manageWorkflows: string;
|
|
466
|
+
showResolve: string;
|
|
467
|
+
validateStructure: string;
|
|
468
|
+
copySchema: string;
|
|
469
|
+
createSchema: string;
|
|
470
|
+
schemaNotFound: string;
|
|
471
|
+
failedToReadFile: (err: string) => string;
|
|
472
|
+
parseError: (err: string) => string;
|
|
473
|
+
templateNotFound: (template: string, artifact: string) => string;
|
|
474
|
+
noProjectSchemasDir: string;
|
|
475
|
+
experimentalWarning: string;
|
|
476
|
+
listAllSchemasOption: string;
|
|
477
|
+
noSchemasFound: string;
|
|
478
|
+
projectSchemasHeader: string;
|
|
479
|
+
userSchemasHeader: string;
|
|
480
|
+
packageSchemasHeader: string;
|
|
481
|
+
shadowsLabel: (sources: string) => string;
|
|
482
|
+
schemaNameRequired: string;
|
|
483
|
+
schemaNotFoundError: (name: string) => string;
|
|
484
|
+
availableSchemas: (schemas: string) => string;
|
|
485
|
+
schemaLabel: (name: string) => string;
|
|
486
|
+
sourceLabel: (source: string) => string;
|
|
487
|
+
pathLabel: (path: string) => string;
|
|
488
|
+
shadowsHeader: string;
|
|
489
|
+
shadowEntry: (source: string, path: string) => string;
|
|
490
|
+
verboseOption: string;
|
|
491
|
+
validatingEntry: (name: string) => string;
|
|
492
|
+
noSchemasInProject: string;
|
|
493
|
+
validationResultsHeader: string;
|
|
494
|
+
validationStatus: (valid: boolean, name: string) => string;
|
|
495
|
+
issueLine: (level: string, message: string) => string;
|
|
496
|
+
schemaIsValid: (name: string) => string;
|
|
497
|
+
schemaHasErrors: (name: string) => string;
|
|
498
|
+
forceOption: string;
|
|
499
|
+
invalidSchemaName: (name: string) => string;
|
|
500
|
+
schemaNamesKebabCase: string;
|
|
501
|
+
schemaSourceNotFound: (source: string) => string;
|
|
502
|
+
schemaAlreadyExists: (name: string) => string;
|
|
503
|
+
suggestionForceOverwrite: string;
|
|
504
|
+
schemaAlreadyExistsAt: (name: string, path: string) => string;
|
|
505
|
+
removingExistingSchema: (name: string) => string;
|
|
506
|
+
forkingSchema: (source: string, dest: string) => string;
|
|
507
|
+
forkedSchema: (source: string, dest: string) => string;
|
|
508
|
+
sourceLabel2: (path: string, location: string) => string;
|
|
509
|
+
destinationLabel: (path: string) => string;
|
|
510
|
+
customizeSchemaAt: string;
|
|
511
|
+
forkFailed: string;
|
|
512
|
+
descriptionOption: string;
|
|
513
|
+
artifactsOption: string;
|
|
514
|
+
defaultSchemaDescription: (name: string) => string;
|
|
515
|
+
defaultOption: string;
|
|
516
|
+
noDefaultOption: string;
|
|
517
|
+
forceOption2: string;
|
|
518
|
+
suggestionForkOrForce: string;
|
|
519
|
+
atLeastOneArtifact: string;
|
|
520
|
+
unknownArtifact: (id: string) => string;
|
|
521
|
+
validArtifacts: (ids: string) => string;
|
|
522
|
+
creatingSchema: (name: string) => string;
|
|
523
|
+
schemaCreated: (name: string) => string;
|
|
524
|
+
schemaCreatedAt: (path: string) => string;
|
|
525
|
+
artifactsLabel: (ids: string) => string;
|
|
526
|
+
setAsDefaultSchemaLabel: string;
|
|
527
|
+
nextStepsHeader: string;
|
|
528
|
+
editSchemaYaml: (path: string) => string;
|
|
529
|
+
modifyTemplates: string;
|
|
530
|
+
useWithSchema: (name: string) => string;
|
|
531
|
+
creationFailed: string;
|
|
532
|
+
outputAsJson: string;
|
|
533
|
+
checkingSchemaExists: string;
|
|
534
|
+
parsingYaml: string;
|
|
535
|
+
validatingSchemaStructure: string;
|
|
536
|
+
checkingTemplateFiles: string;
|
|
537
|
+
dependencyGraphPassed: string;
|
|
538
|
+
};
|
|
539
|
+
export declare const COMPLETION_MESSAGES: {
|
|
540
|
+
removeConfigConfirm: (path: string) => string;
|
|
541
|
+
shellNotSupported: (shell: string, supported: string) => string;
|
|
542
|
+
couldNotDetectShell: string;
|
|
543
|
+
usageCompletion: (operation: string) => string;
|
|
544
|
+
currentlySupported: (supported: string) => string;
|
|
545
|
+
installingCompletion: (shell: string) => string;
|
|
546
|
+
installSuccess: (message: string) => string;
|
|
547
|
+
installedTo: (path: string) => string;
|
|
548
|
+
backupCreated: (path: string) => string;
|
|
549
|
+
configFileConfigured: (path: string) => string;
|
|
550
|
+
restartShell: (cmd: string) => string;
|
|
551
|
+
installFailed: (message: string) => string;
|
|
552
|
+
failedToInstall: (error: string) => string;
|
|
553
|
+
uninstallCancelled: string;
|
|
554
|
+
uninstallingCompletion: (shell: string) => string;
|
|
555
|
+
uninstallSuccess: (message: string) => string;
|
|
556
|
+
uninstallFailed: (message: string) => string;
|
|
557
|
+
failedToUninstall: (error: string) => string;
|
|
558
|
+
zshScriptRemoved: (path: string) => string;
|
|
559
|
+
zshConfigRemoved: string;
|
|
560
|
+
bashAlreadyInstalled: string;
|
|
561
|
+
bashAlreadyInstalledDetail: string;
|
|
562
|
+
bashAlreadyInstalledHint: string;
|
|
563
|
+
bashUpdatedWithBackup: string;
|
|
564
|
+
bashUpdated: string;
|
|
565
|
+
bashInstalledWithBashrc: string;
|
|
566
|
+
bashInstalled: string;
|
|
567
|
+
bashNotInstalled: string;
|
|
568
|
+
bashUninstalled: string;
|
|
569
|
+
bashFailedToInstall: (error: string) => string;
|
|
570
|
+
bashFailedToUninstall: (error: string) => string;
|
|
571
|
+
bashScriptInstalled: string;
|
|
572
|
+
bashAddToBashrc: string;
|
|
573
|
+
bashSourceComment: string;
|
|
574
|
+
bashThenRestartShell: (cmd: string) => string;
|
|
575
|
+
zshAlreadyInstalled: string;
|
|
576
|
+
zshAlreadyInstalledDetail: string;
|
|
577
|
+
zshAlreadyInstalledHint: string;
|
|
578
|
+
zshUpdatedWithBackup: string;
|
|
579
|
+
zshUpdated: string;
|
|
580
|
+
zshInstalledOhMyZsh: string;
|
|
581
|
+
zshInstalledWithZshrc: string;
|
|
582
|
+
zshInstalled: string;
|
|
583
|
+
zshFailedToInstall: (error: string) => string;
|
|
584
|
+
zshOhMyZshFpathNote: string;
|
|
585
|
+
zshOhMyZshFpathVerify: (dir: string) => string;
|
|
586
|
+
zshOhMyZshFpathRestart: string;
|
|
587
|
+
zshOhMyZshInstalledDir: string;
|
|
588
|
+
zshOhMyZshAutoActivate: string;
|
|
589
|
+
zshInstalledDir: string;
|
|
590
|
+
zshAddToZshrc: string;
|
|
591
|
+
zshFpathComment: string;
|
|
592
|
+
zshCompinitComment: string;
|
|
593
|
+
zshThenRestartShell: (cmd: string) => string;
|
|
594
|
+
zshCheckExistingLines: (path: string) => string;
|
|
595
|
+
activeChange: string;
|
|
596
|
+
specification: string;
|
|
597
|
+
archivedChange: string;
|
|
598
|
+
bashCompletionNotDetected: string;
|
|
599
|
+
bashCompletionRequired: string;
|
|
600
|
+
installWith: string;
|
|
601
|
+
addToBashProfile: string;
|
|
602
|
+
warningSkippingProfile: (path: string, err: string) => string;
|
|
603
|
+
warningCouldNotConfigure: (path: string, err: string) => string;
|
|
604
|
+
warningCouldNotRead: (path: string, err: string) => string;
|
|
605
|
+
warningStartMarkerWithoutEnd: (path: string) => string;
|
|
606
|
+
warningCouldNotClean: (path: string, err: string) => string;
|
|
607
|
+
warningCouldNotRemoveLegacy: (path: string, err: string) => string;
|
|
608
|
+
powershellCompletionHeader: string;
|
|
609
|
+
powershellCompletionNote: string;
|
|
610
|
+
};
|
|
611
|
+
export declare const FEEDBACK_MESSAGES: {
|
|
612
|
+
submitFeedback: string;
|
|
613
|
+
githubCliNotFound: string;
|
|
614
|
+
githubAuthRequired: string;
|
|
615
|
+
formattedFeedbackHeader: string;
|
|
616
|
+
titleLabel: (title: string) => string;
|
|
617
|
+
labelsFeedback: string;
|
|
618
|
+
bodyLabel: string;
|
|
619
|
+
endFeedback: string;
|
|
620
|
+
submitManually: string;
|
|
621
|
+
autoSubmitHint: string;
|
|
622
|
+
feedbackSubmitted: string;
|
|
623
|
+
issueUrl: (url: string) => string;
|
|
624
|
+
feedbackTitle: (message: string) => string;
|
|
625
|
+
submittedVia: string;
|
|
626
|
+
versionLabel: (version: string) => string;
|
|
627
|
+
platformLabel: (platform: string) => string;
|
|
628
|
+
timestampLabel: (timestamp: string) => string;
|
|
629
|
+
};
|
|
630
|
+
export declare const UI_MESSAGES: {
|
|
631
|
+
welcomeTitle: string;
|
|
632
|
+
welcomeSubtitle: string;
|
|
633
|
+
setupWillConfigure: string;
|
|
634
|
+
agentSkills: string;
|
|
635
|
+
slashCommands: string;
|
|
636
|
+
quickStart: string;
|
|
637
|
+
cmdNewChange: string;
|
|
638
|
+
cmdContinue: string;
|
|
639
|
+
cmdApply: string;
|
|
640
|
+
pressEnter: string;
|
|
641
|
+
};
|
|
642
|
+
export declare const PROMPT_MESSAGES: {
|
|
643
|
+
invalid: string;
|
|
644
|
+
none: string;
|
|
645
|
+
noneSelected: string;
|
|
646
|
+
selected: string;
|
|
647
|
+
search: string;
|
|
648
|
+
typeToFilter: string;
|
|
649
|
+
navigate: string;
|
|
650
|
+
toggle: string;
|
|
651
|
+
remove: string;
|
|
652
|
+
confirm: string;
|
|
653
|
+
noMatches: string;
|
|
654
|
+
configured: string;
|
|
655
|
+
detected: string;
|
|
656
|
+
refresh: string;
|
|
657
|
+
selectedLabel: string;
|
|
658
|
+
};
|
|
659
|
+
export declare const UTILS_MESSAGES: {
|
|
660
|
+
failedToReadTasks: (path: string, err: unknown) => string;
|
|
661
|
+
};
|
|
662
|
+
export declare const UPDATE_MESSAGES: {
|
|
663
|
+
noOpenspecDir: string;
|
|
664
|
+
noConfiguredTools: string;
|
|
665
|
+
runInitHint: string;
|
|
666
|
+
forceUpdating: (count: number, tools: string) => string;
|
|
667
|
+
updatingTool: (name: string) => string;
|
|
668
|
+
updatedTool: (name: string) => string;
|
|
669
|
+
failedToUpdate: (name: string) => string;
|
|
670
|
+
updated: (tools: string, version: string) => string;
|
|
671
|
+
failed: (errors: string) => string;
|
|
672
|
+
removedCommands: (count: number) => string;
|
|
673
|
+
removedSkills: (count: number) => string;
|
|
674
|
+
removedDeselectedCommands: (count: number) => string;
|
|
675
|
+
removedDeselectedSkills: (count: number) => string;
|
|
676
|
+
gettingStarted: string;
|
|
677
|
+
cmdNew: string;
|
|
678
|
+
cmdContinue: string;
|
|
679
|
+
cmdApply: string;
|
|
680
|
+
learnMore: (url: string) => string;
|
|
681
|
+
restartIDE: string;
|
|
682
|
+
allUpToDate: (count: number, version: string) => string;
|
|
683
|
+
toolsList: (tools: string) => string;
|
|
684
|
+
useForceHint: string;
|
|
685
|
+
updatingPlan: (count: number, updates: string) => string;
|
|
686
|
+
alreadyUpToDate: (tools: string) => string;
|
|
687
|
+
detectedNewTools: (noun: string, names: string, pronoun: string) => string;
|
|
688
|
+
toolNoun: string;
|
|
689
|
+
toolsNoun: string;
|
|
690
|
+
it: string;
|
|
691
|
+
them: string;
|
|
692
|
+
extraWorkflowsNote: (count: number) => string;
|
|
693
|
+
cleaningLegacy: string;
|
|
694
|
+
legacyCleaned: string;
|
|
695
|
+
forceLegacyHint: string;
|
|
696
|
+
upgradeLegacyPrompt: string;
|
|
697
|
+
skippingLegacyCleanup: string;
|
|
698
|
+
toolsDetectedFromLegacy: string;
|
|
699
|
+
setupSkillsFor: (tools: string) => string;
|
|
700
|
+
selectToolsNewSkillSystem: string;
|
|
701
|
+
skippingToolSetup: string;
|
|
702
|
+
settingUp: (name: string) => string;
|
|
703
|
+
setupComplete: (name: string) => string;
|
|
704
|
+
failedToSetup: (name: string) => string;
|
|
705
|
+
};
|
|
706
|
+
export declare const TASK_PROGRESS_MESSAGES: {
|
|
707
|
+
noTasks: string;
|
|
708
|
+
complete: string;
|
|
709
|
+
tasksCount: (completed: number, total: number) => string;
|
|
710
|
+
};
|
|
711
|
+
export declare const FILE_SYSTEM_MESSAGES: {
|
|
712
|
+
endMarkerBeforeStart: (filePath: string) => string;
|
|
713
|
+
invalidMarkerState: (filePath: string, startFound: boolean, endFound: boolean) => string;
|
|
714
|
+
unableToCheckFileExists: (filePath: string, error: string) => string;
|
|
715
|
+
unableToCheckDirExists: (dirPath: string, error: string) => string;
|
|
716
|
+
pathComponentNotDir: (dirPath: string) => string;
|
|
717
|
+
errorCheckingDir: (dir: string, error: string) => string;
|
|
718
|
+
unableToDetermineWritePermissions: (filePath: string, error: string) => string;
|
|
719
|
+
insufficientPermissions: (dirPath: string, error: string) => string;
|
|
720
|
+
couldNotCleanUpTestFile: (filePath: string, error: string) => string;
|
|
721
|
+
};
|
|
722
|
+
export declare const VALIDATOR_MESSAGES: {
|
|
723
|
+
unknownError: string;
|
|
724
|
+
duplicateRequirementAdded: (name: string) => string;
|
|
725
|
+
missingRequirementTextAdded: (name: string) => string;
|
|
726
|
+
missingShallOrMustAdded: (name: string) => string;
|
|
727
|
+
missingScenarioAdded: (name: string) => string;
|
|
728
|
+
duplicateRequirementModified: (name: string) => string;
|
|
729
|
+
missingRequirementTextModified: (name: string) => string;
|
|
730
|
+
missingShallOrMustModified: (name: string) => string;
|
|
731
|
+
missingScenarioModified: (name: string) => string;
|
|
732
|
+
duplicateRequirementRemoved: (name: string) => string;
|
|
733
|
+
duplicateFromRenamed: (name: string) => string;
|
|
734
|
+
duplicateToRenamed: (name: string) => string;
|
|
735
|
+
requirementInModifiedAndRemoved: (name: string) => string;
|
|
736
|
+
requirementInModifiedAndAdded: (name: string) => string;
|
|
737
|
+
requirementInAddedAndRemoved: (name: string) => string;
|
|
738
|
+
modifiedReferencesOldRenamed: (to: string) => string;
|
|
739
|
+
renamedToCollidesAdded: (to: string) => string;
|
|
740
|
+
deltaSectionsEmpty: (sections: string) => string;
|
|
741
|
+
noDeltaSectionsFound: string;
|
|
742
|
+
};
|
|
743
|
+
export declare const WORKFLOW_MESSAGES: {
|
|
744
|
+
generatingInstructions: string;
|
|
745
|
+
missingArtifactArgument: (artifacts: string) => string;
|
|
746
|
+
artifactNotFound: (artifactId: string, schemaName: string, artifacts: string) => string;
|
|
747
|
+
unmetDependenciesWarning: string;
|
|
748
|
+
missingDependencies: (deps: string) => string;
|
|
749
|
+
createArtifactTask: (artifactId: string, changeName: string) => string;
|
|
750
|
+
readFilesForContext: string;
|
|
751
|
+
writeTo: (filePath: string) => string;
|
|
752
|
+
unlocksArtifacts: (artifacts: string) => string;
|
|
753
|
+
generatingApplyInstructions: string;
|
|
754
|
+
cannotApplyMissingArtifacts: (artifacts: string) => string;
|
|
755
|
+
missingTrackingFile: (filename: string) => string;
|
|
756
|
+
trackingFileNoTasks: (filename: string) => string;
|
|
757
|
+
allTasksComplete: string;
|
|
758
|
+
allArtifactsCompleteProceed: string;
|
|
759
|
+
readContextAndWorkTasks: string;
|
|
760
|
+
applyTitle: (changeName: string) => string;
|
|
761
|
+
schemaLabel: (schemaName: string) => string;
|
|
762
|
+
blockedTitle: string;
|
|
763
|
+
missingArtifactsLabel: (artifacts: string) => string;
|
|
764
|
+
createMissingFirst: string;
|
|
765
|
+
contextFilesTitle: string;
|
|
766
|
+
progressTitle: string;
|
|
767
|
+
progressComplete: (complete: number, total: number) => string;
|
|
768
|
+
progressCompleteWithCheck: (complete: number, total: number) => string;
|
|
769
|
+
tasksTitle: string;
|
|
770
|
+
instructionTitle: string;
|
|
771
|
+
missingNameArgument: string;
|
|
772
|
+
creatingChange: (name: string, schema?: string) => string;
|
|
773
|
+
createdChange: (name: string, schema: string) => string;
|
|
774
|
+
failedToCreateChange: (name: string) => string;
|
|
775
|
+
availableSchemas: string;
|
|
776
|
+
projectLabel: string;
|
|
777
|
+
userOverrideLabel: string;
|
|
778
|
+
artifactsLabel: (artifacts: string) => string;
|
|
779
|
+
noChangesFound: string;
|
|
780
|
+
missingChangeOption: (available: string) => string;
|
|
781
|
+
invalidChangeName: (name: string, error: string) => string;
|
|
782
|
+
changeNotFoundNoChanges: (name: string) => string;
|
|
783
|
+
changeNotFound: (name: string, available: string) => string;
|
|
784
|
+
schemaNotFound: (name: string, available?: string) => string;
|
|
785
|
+
schemaReadFailed: (path: string, err: string) => string;
|
|
786
|
+
schemaInvalid: (path: string, err: string) => string;
|
|
787
|
+
schemaParseFailed: (path: string, err: string) => string;
|
|
788
|
+
loadingChangeStatus: string;
|
|
789
|
+
noActiveChanges: string;
|
|
790
|
+
changeLabel: (name: string) => string;
|
|
791
|
+
schemaLabel2: (name: string) => string;
|
|
792
|
+
progressArtifacts: (done: number, total: number) => string;
|
|
793
|
+
allArtifactsComplete: string;
|
|
794
|
+
blockedBy: (deps: string) => string;
|
|
795
|
+
loadingTemplates: string;
|
|
796
|
+
schemaLabel3: (name: string) => string;
|
|
797
|
+
sourceLabel: (source: string) => string;
|
|
798
|
+
};
|
|
799
|
+
export declare const MIGRATION_MESSAGES: {
|
|
800
|
+
migrated: (count: number) => string;
|
|
801
|
+
newInThisVersion: string;
|
|
802
|
+
};
|
|
803
|
+
export declare const LEGACY_CLEANUP_MESSAGES: {
|
|
804
|
+
failedToModify: (file: string, error: string) => string;
|
|
805
|
+
failedToDeleteDir: (dir: string, error: string) => string;
|
|
806
|
+
failedToDeleteFile: (file: string, error: string) => string;
|
|
807
|
+
failedToDeleteOpenspecAgents: (error: string) => string;
|
|
808
|
+
cleanedUpHeader: string;
|
|
809
|
+
removedFile: (file: string) => string;
|
|
810
|
+
removedDir: (dir: string) => string;
|
|
811
|
+
removedMarkers: (file: string) => string;
|
|
812
|
+
errorsHeader: string;
|
|
813
|
+
errorItem: (error: string) => string;
|
|
814
|
+
explanationReplacedBySkills: string;
|
|
815
|
+
explanationReplacedByToolSkills: (toolDir: string) => string;
|
|
816
|
+
explanationObsoleteWorkflow: string;
|
|
817
|
+
explanationRemovingMarkers: string;
|
|
818
|
+
upgradeHeader: string;
|
|
819
|
+
upgradeLine1: string;
|
|
820
|
+
upgradeLine2: string;
|
|
821
|
+
upgradeLine3: string;
|
|
822
|
+
filesToRemoveHeader: string;
|
|
823
|
+
filesToRemoveSubheader: string;
|
|
824
|
+
filesToUpdateHeader: string;
|
|
825
|
+
filesToUpdateSubheader: string;
|
|
826
|
+
needsAttention: string;
|
|
827
|
+
projectMdItem: string;
|
|
828
|
+
projectMdWontDelete: string;
|
|
829
|
+
projectMdContextLine1: string;
|
|
830
|
+
projectMdContextLine2: string;
|
|
831
|
+
projectMdContextLine3: string;
|
|
832
|
+
projectMdReviewLine1: string;
|
|
833
|
+
projectMdReviewLine2: string;
|
|
834
|
+
};
|
|
835
|
+
export declare const PROJECT_CONFIG_MESSAGES: {
|
|
836
|
+
invalidSchemaField: string;
|
|
837
|
+
contextTooLarge: (size: string, limit: string) => string;
|
|
838
|
+
ignoringContextField: string;
|
|
839
|
+
invalidContextField: string;
|
|
840
|
+
emptyRulesForArtifact: (artifactId: string) => string;
|
|
841
|
+
rulesMustBeArrayOfStrings: (artifactId: string) => string;
|
|
842
|
+
invalidRulesField: string;
|
|
843
|
+
};
|
|
844
|
+
export declare const NEW_CHANGE_TEMPLATE_MESSAGES: {
|
|
845
|
+
skillDescription: string;
|
|
846
|
+
skillInstructions: string;
|
|
847
|
+
skillCompatibility: string;
|
|
848
|
+
opsxDescription: string;
|
|
849
|
+
opsxContent: string;
|
|
850
|
+
};
|
|
851
|
+
export declare const ONBOARD_TEMPLATE_MESSAGES: {
|
|
852
|
+
skillDescription: string;
|
|
853
|
+
skillCompatibility: string;
|
|
854
|
+
opsxDescription: string;
|
|
855
|
+
instructions: string;
|
|
856
|
+
};
|
|
857
|
+
export declare const VERIFY_CHANGE_TEMPLATE_MESSAGES: {
|
|
858
|
+
skillDescription: string;
|
|
859
|
+
skillCompatibility: string;
|
|
860
|
+
opsxDescription: string;
|
|
861
|
+
skillInstructions: string;
|
|
862
|
+
opsxContent: string;
|
|
863
|
+
};
|
|
864
|
+
export declare const TELEMETRY_MESSAGES: {
|
|
865
|
+
firstRunNotice: string;
|
|
866
|
+
};
|
|
867
|
+
//# sourceMappingURL=index.d.ts.map
|