@planu/cli 4.11.1 → 4.11.3
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 +16 -0
- package/dist/config/elicitation-questions.json +5 -17
- package/dist/engine/cascade-hooks/registry.js +0 -2
- package/dist/engine/challenge-scenarios-loader.d.ts +3 -3
- package/dist/engine/compliance-injector.d.ts +3 -3
- package/dist/engine/dashboard/kanban-logic.d.ts +1 -1
- package/dist/engine/doc-generator/portal/risk-matrix-svg.d.ts +1 -1
- package/dist/engine/doc-generator/proposal/proposal-generator.d.ts +1 -1
- package/dist/engine/elicitation/answer-extractor.d.ts +1 -4
- package/dist/engine/elicitation/answer-extractor.js +197 -68
- package/dist/engine/elicitation/decision-gap-detector.js +59 -79
- package/dist/engine/elicitation/index.d.ts +0 -1
- package/dist/engine/elicitation/index.js +0 -1
- package/dist/engine/elicitation/question-generator.js +10 -3
- package/dist/engine/elicitation/question-grounding-gate.js +83 -34
- package/dist/engine/evidence-gates/lifecycle-gate.js +27 -14
- package/dist/engine/evidence-index/index-builder.js +7 -2
- package/dist/engine/frontmatter-sha/frozen-fields.d.ts +1 -1
- package/dist/engine/handoff-artifacts/schemas/red-tests-handoff.d.ts +2 -2
- package/dist/engine/handoff-artifacts/schemas.d.ts +22 -22
- package/dist/engine/human-summary.js +3 -3
- package/dist/engine/implementation-contract/common.d.ts +1 -1
- package/dist/engine/implementation-contract/renderer.js +17 -39
- package/dist/engine/keyword-matcher/stopwords.d.ts +2 -2
- package/dist/engine/lifecycle-hints.d.ts +1 -1
- package/dist/engine/lifecycle-hints.js +13 -29
- package/dist/engine/provider-adapters/adapters/claude.d.ts +1 -1
- package/dist/engine/provider-adapters/adapters/gemini.d.ts +1 -1
- package/dist/engine/provider-adapters/adapters/gpt4.d.ts +1 -1
- package/dist/engine/provider-adapters/adapters/markdown.d.ts +1 -1
- package/dist/engine/safety/atomic-write-file.d.ts +1 -1
- package/dist/engine/safety/cross-process-lock.d.ts +1 -1
- package/dist/engine/safety/path-sanitizer.d.ts +1 -1
- package/dist/engine/security-analyzer/profile-detector.js +48 -16
- package/dist/engine/spec-format/copula-blacklist.d.ts +2 -2
- package/dist/engine/spec-format/lean-spec-generator.d.ts +2 -2
- package/dist/engine/spec-format/lean-spec-generator.js +9 -10
- package/dist/engine/spec-format/metadata-value-policy.d.ts +20 -20
- package/dist/engine/spec-generator/fallback-generator.js +13 -20
- package/dist/engine/spec-grounding/contract.d.ts +5 -0
- package/dist/engine/spec-grounding/contract.js +10 -6
- package/dist/engine/spec-migrator/lean-migration.js +9 -16
- package/dist/engine/text-signal-boundaries.js +45 -12
- package/dist/engine/universal-rules/rules/planu-modes.js +0 -2
- package/dist/engine/web-fetcher/stack-advisor.d.ts +2 -2
- package/dist/engine/web-fetcher/stack-advisor.js +78 -17
- package/dist/engine/well-known/manifest-schema.d.ts +33 -33
- package/dist/engine/workers/schema.d.ts +3 -3
- package/dist/hosts/claude-code/ux/mcp-resources.d.ts +4 -4
- package/dist/hosts/codex/rest-shim.d.ts +1 -1
- package/dist/native/lightweight-command-catalog.d.ts +30 -30
- package/dist/server/openapi-spec.d.ts +132 -132
- package/dist/tools/challenge-spec/challenge-report.d.ts +13 -0
- package/dist/tools/challenge-spec/challenge-report.js +55 -0
- package/dist/tools/challenge-spec/event-challenge-scenarios.js +8 -27
- package/dist/tools/challenge-spec/resilience-challenge-scenarios-a.js +16 -32
- package/dist/tools/challenge-spec/resilience-challenge-scenarios-b.js +15 -20
- package/dist/tools/challenge-spec/scenario-collector.d.ts +13 -0
- package/dist/tools/challenge-spec/scenario-collector.js +86 -0
- package/dist/tools/challenge-spec/scenarios-data.js +10 -9
- package/dist/tools/challenge-spec/scenarios-failure.js +38 -54
- package/dist/tools/challenge-spec/scenarios-scale.js +14 -15
- package/dist/tools/challenge-spec/scenarios-security.d.ts +1 -1
- package/dist/tools/challenge-spec/scenarios-security.js +18 -11
- package/dist/tools/challenge-spec/scenarios-utils.d.ts +31 -5
- package/dist/tools/challenge-spec/scenarios-utils.js +102 -6
- package/dist/tools/challenge-spec/security-challenge-scenarios.d.ts +1 -1
- package/dist/tools/challenge-spec/security-challenge-scenarios.js +20 -25
- package/dist/tools/challenge-spec.js +46 -124
- package/dist/tools/clarify-requirements/multiple-choice.js +1 -1
- package/dist/tools/clarify-requirements/questions-context.js +11 -11
- package/dist/tools/clarify-requirements/questions.js +3 -23
- package/dist/tools/clarify-requirements.js +38 -0
- package/dist/tools/compliance-gate-handler.d.ts +1 -1
- package/dist/tools/create-spec/autopilot-analyzer.d.ts +1 -1
- package/dist/tools/create-spec/autopilot-analyzer.js +29 -54
- package/dist/tools/create-spec/post-creation.js +23 -4
- package/dist/tools/create-spec.js +51 -168
- package/dist/tools/delete-first/suggest-deletions.d.ts +1 -1
- package/dist/tools/elicit-requirements-handler.js +20 -12
- package/dist/tools/generate-batch-script.d.ts +2 -2
- package/dist/tools/init-project/rules-generator.js +0 -1
- package/dist/tools/oauth-handler.d.ts +1 -1
- package/dist/tools/register-sdd-tools.d.ts +1 -1
- package/dist/tools/register-spec-tools/core-spec-tools.js +11 -2
- package/dist/tools/render-spec-for-provider.d.ts +2 -2
- package/dist/tools/scan-orphan-spec-refs.d.ts +6 -6
- package/dist/tools/schemas/agents.d.ts +7 -7
- package/dist/tools/schemas/analysis.d.ts +11 -11
- package/dist/tools/schemas/delete.d.ts +5 -5
- package/dist/tools/schemas/github.d.ts +4 -4
- package/dist/tools/schemas/ide-config.d.ts +12 -12
- package/dist/tools/schemas/infra.d.ts +9 -9
- package/dist/tools/schemas/lifecycle.d.ts +50 -50
- package/dist/tools/schemas/llm-provider-schemas.d.ts +7 -7
- package/dist/tools/schemas/plugins-schemas.d.ts +12 -12
- package/dist/tools/schemas/project-graph.d.ts +6 -6
- package/dist/tools/schemas/rbac.d.ts +2 -2
- package/dist/tools/schemas/registry.d.ts +3 -3
- package/dist/tools/schemas/runtime-security.d.ts +2 -2
- package/dist/tools/schemas/session.d.ts +2 -2
- package/dist/tools/schemas/spec.d.ts +15 -15
- package/dist/tools/schemas/token-intelligence.d.ts +6 -6
- package/dist/tools/schemas/token-optimization.d.ts +2 -2
- package/dist/tools/schemas/workers-schema.d.ts +4 -4
- package/dist/tools/skill-bootstrap-handler.d.ts +7 -7
- package/dist/tools/suggest-stack.js +49 -13
- package/dist/tools/tool-registry/deprecated-stubs.d.ts +1 -1
- package/dist/tools/triage-request.d.ts +3 -3
- package/dist/tools/update-status/dod-gates.d.ts +8 -0
- package/dist/tools/update-status/dod-gates.js +68 -43
- package/dist/tools/update-status/file-sync.d.ts +1 -1
- package/dist/tools/update-status/file-sync.js +10 -45
- package/dist/tools/update-status/index.js +133 -97
- package/dist/tools/update-status/qa-gate.js +26 -0
- package/dist/tools/update-status/response-builder.d.ts +1 -1
- package/dist/tools/update-status/response-builder.js +11 -19
- package/dist/tools/update-status/transition-guard.d.ts +2 -2
- package/dist/tools/update-status/transition-guard.js +11 -8
- package/dist/tools/update-status-actions.d.ts +0 -1
- package/dist/tools/update-status-actions.js +10 -26
- package/dist/tools/update-status-convention-gate.d.ts +1 -6
- package/dist/tools/update-status-convention-gate.js +9 -33
- package/dist/tools/validate-lint.d.ts +1 -1
- package/dist/tools/validate-lint.js +39 -1
- package/dist/types/docs.d.ts +0 -4
- package/dist/types/env.d.ts +0 -4
- package/dist/types/estimation.d.ts +0 -2
- package/dist/types/multi-teammate-review.d.ts +4 -4
- package/dist/types/plugin-install.d.ts +7 -7
- package/dist/types/spec/core.d.ts +20 -0
- package/dist/types/spec/inputs.d.ts +1 -1
- package/dist/types/stack/index.d.ts +1 -1
- package/dist/types/stack/recommend.d.ts +10 -0
- package/package.json +21 -18
- package/planu-native.json +1 -1
- package/planu-plugin.json +1 -1
- package/src/i18n/messages/en.json +0 -72
- package/src/i18n/messages/es.json +0 -72
- package/src/i18n/messages/pt.json +0 -72
- package/dist/config/elicitation-dimensions.json +0 -51
- package/dist/engine/actuals-estimator.d.ts +0 -14
- package/dist/engine/actuals-estimator.js +0 -64
- package/dist/engine/cascade-hooks/hooks/living-specs.hook.d.ts +0 -3
- package/dist/engine/cascade-hooks/hooks/living-specs.hook.js +0 -19
- package/dist/engine/elicitation/non-interactive-defaults.d.ts +0 -9
- package/dist/engine/elicitation/non-interactive-defaults.js +0 -28
- package/dist/engine/elicitation/option-builder.d.ts +0 -9
- package/dist/engine/elicitation/option-builder.js +0 -85
- package/dist/engine/progress-writer.d.ts +0 -10
- package/dist/engine/progress-writer.js +0 -63
- package/dist/tools/clarify-requirements/interview-mode.d.ts +0 -42
- package/dist/tools/clarify-requirements/interview-mode.js +0 -342
- package/dist/tools/update-status/mode-hints.d.ts +0 -4
- package/dist/tools/update-status/mode-hints.js +0 -24
|
@@ -4,10 +4,10 @@ export declare const RenderSpecForProviderInputSchema: z.ZodObject<{
|
|
|
4
4
|
specId: z.ZodString;
|
|
5
5
|
projectPath: z.ZodString;
|
|
6
6
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
7
|
-
gemini: "gemini";
|
|
8
|
-
markdown: "markdown";
|
|
9
7
|
claude: "claude";
|
|
8
|
+
gemini: "gemini";
|
|
10
9
|
gpt4: "gpt4";
|
|
10
|
+
markdown: "markdown";
|
|
11
11
|
}>>;
|
|
12
12
|
}, z.core.$strip>;
|
|
13
13
|
export type RenderSpecForProviderInput = z.infer<typeof RenderSpecForProviderInputSchema>;
|
|
@@ -4,26 +4,26 @@ export declare const ScanOrphanSpecRefsInputSchema: {
|
|
|
4
4
|
projectPath: z.ZodOptional<z.ZodString>;
|
|
5
5
|
range: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
6
6
|
head: "head";
|
|
7
|
-
"since-last-release": "since-last-release";
|
|
8
7
|
"origin-main..head": "origin-main..head";
|
|
8
|
+
"since-last-release": "since-last-release";
|
|
9
9
|
}>>>;
|
|
10
10
|
mode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
11
|
-
strict: "strict";
|
|
12
|
-
"report-only": "report-only";
|
|
13
11
|
"create-retroactive": "create-retroactive";
|
|
12
|
+
"report-only": "report-only";
|
|
13
|
+
strict: "strict";
|
|
14
14
|
}>>>;
|
|
15
15
|
};
|
|
16
16
|
export declare const ScanOrphanSpecRefsInput: z.ZodObject<{
|
|
17
17
|
projectPath: z.ZodOptional<z.ZodString>;
|
|
18
18
|
range: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
19
19
|
head: "head";
|
|
20
|
-
"since-last-release": "since-last-release";
|
|
21
20
|
"origin-main..head": "origin-main..head";
|
|
21
|
+
"since-last-release": "since-last-release";
|
|
22
22
|
}>>>;
|
|
23
23
|
mode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
24
|
-
strict: "strict";
|
|
25
|
-
"report-only": "report-only";
|
|
26
24
|
"create-retroactive": "create-retroactive";
|
|
25
|
+
"report-only": "report-only";
|
|
26
|
+
strict: "strict";
|
|
27
27
|
}>>>;
|
|
28
28
|
}, z.core.$strip>;
|
|
29
29
|
/** Output type (post-parse, with defaults applied) */
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const AgentPlatformEnum: z.ZodEnum<{
|
|
3
|
-
custom: "custom";
|
|
4
|
-
"claude-code": "claude-code";
|
|
5
|
-
cursor: "cursor";
|
|
6
|
-
windsurf: "windsurf";
|
|
7
3
|
aider: "aider";
|
|
8
|
-
|
|
4
|
+
"claude-code": "claude-code";
|
|
9
5
|
cline: "cline";
|
|
10
6
|
continue: "continue";
|
|
7
|
+
copilot: "copilot";
|
|
8
|
+
cursor: "cursor";
|
|
9
|
+
custom: "custom";
|
|
10
|
+
windsurf: "windsurf";
|
|
11
11
|
}>;
|
|
12
12
|
export declare const SubAgentFrameworkEnum: z.ZodEnum<{
|
|
13
|
-
|
|
13
|
+
autogen: "autogen";
|
|
14
14
|
"claude-agent-sdk": "claude-agent-sdk";
|
|
15
15
|
crewai: "crewai";
|
|
16
|
+
custom: "custom";
|
|
16
17
|
langgraph: "langgraph";
|
|
17
|
-
autogen: "autogen";
|
|
18
18
|
mastra: "mastra";
|
|
19
19
|
"vercel-ai-sdk": "vercel-ai-sdk";
|
|
20
20
|
}>;
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const AuditCategoryEnum: z.ZodEnum<{
|
|
3
|
-
solid: "solid";
|
|
4
|
-
"clean-code": "clean-code";
|
|
5
3
|
architecture: "architecture";
|
|
6
|
-
|
|
7
|
-
performance: "performance";
|
|
8
|
-
"error-handling": "error-handling";
|
|
9
|
-
testing: "testing";
|
|
4
|
+
"clean-code": "clean-code";
|
|
10
5
|
dry: "dry";
|
|
6
|
+
"error-handling": "error-handling";
|
|
7
|
+
performance: "performance";
|
|
11
8
|
"project-rules": "project-rules";
|
|
9
|
+
security: "security";
|
|
10
|
+
solid: "solid";
|
|
11
|
+
testing: "testing";
|
|
12
12
|
}>;
|
|
13
13
|
export declare const ChecklistFocusEnum: z.ZodEnum<{
|
|
14
|
-
security: "security";
|
|
15
14
|
completeness: "completeness";
|
|
16
15
|
consistency: "consistency";
|
|
17
|
-
feasibility: "feasibility";
|
|
18
16
|
"edge-cases": "edge-cases";
|
|
17
|
+
feasibility: "feasibility";
|
|
18
|
+
security: "security";
|
|
19
19
|
ux: "ux";
|
|
20
20
|
}>;
|
|
21
21
|
export declare const ChallengeSpecFocusEnum: z.ZodEnum<{
|
|
22
|
-
security: "security";
|
|
23
|
-
failures: "failures";
|
|
24
22
|
concurrency: "concurrency";
|
|
25
|
-
scale: "scale";
|
|
26
23
|
"data-consistency": "data-consistency";
|
|
24
|
+
failures: "failures";
|
|
25
|
+
scale: "scale";
|
|
26
|
+
security: "security";
|
|
27
27
|
}>;
|
|
28
28
|
//# sourceMappingURL=analysis.d.ts.map
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const DeleteActionEnum: z.ZodEnum<{
|
|
3
|
-
restore: "restore";
|
|
4
|
-
soft_delete: "soft_delete";
|
|
5
3
|
hard_delete: "hard_delete";
|
|
6
4
|
purge: "purge";
|
|
5
|
+
restore: "restore";
|
|
6
|
+
soft_delete: "soft_delete";
|
|
7
7
|
}>;
|
|
8
8
|
export declare const DeleteItemTypeEnum: z.ZodEnum<{
|
|
9
|
-
project: "project";
|
|
10
9
|
decision: "decision";
|
|
11
|
-
spec: "spec";
|
|
12
10
|
pattern: "pattern";
|
|
11
|
+
project: "project";
|
|
12
|
+
spec: "spec";
|
|
13
13
|
}>;
|
|
14
14
|
export declare const TrashActionEnum: z.ZodEnum<{
|
|
15
15
|
list: "list";
|
|
16
|
-
restore: "restore";
|
|
17
16
|
purge: "purge";
|
|
17
|
+
restore: "restore";
|
|
18
18
|
}>;
|
|
19
19
|
//# sourceMappingURL=delete.d.ts.map
|
|
@@ -8,19 +8,19 @@ export declare const PRStatusSchema: z.ZodObject<{
|
|
|
8
8
|
prNumber: z.ZodOptional<z.ZodNumber>;
|
|
9
9
|
specId: z.ZodOptional<z.ZodString>;
|
|
10
10
|
view: z.ZodDefault<z.ZodEnum<{
|
|
11
|
-
prs: "prs";
|
|
12
11
|
milestones: "milestones";
|
|
12
|
+
prs: "prs";
|
|
13
13
|
}>>;
|
|
14
14
|
}, z.core.$strip>;
|
|
15
15
|
export declare const ReviewPRSchema: z.ZodObject<{
|
|
16
16
|
prNumber: z.ZodNumber;
|
|
17
17
|
reviewType: z.ZodDefault<z.ZodEnum<{
|
|
18
|
+
detailed: "detailed";
|
|
18
19
|
expert: "expert";
|
|
19
|
-
security: "security";
|
|
20
20
|
performance: "performance";
|
|
21
21
|
quality: "quality";
|
|
22
|
+
security: "security";
|
|
22
23
|
summary: "summary";
|
|
23
|
-
detailed: "detailed";
|
|
24
24
|
}>>;
|
|
25
25
|
}, z.core.$strip>;
|
|
26
26
|
export declare const CreateReleaseSchema: z.ZodObject<{
|
|
@@ -35,8 +35,8 @@ export declare const GenerateChangelogSchema: z.ZodObject<{
|
|
|
35
35
|
since: z.ZodString;
|
|
36
36
|
until: z.ZodDefault<z.ZodString>;
|
|
37
37
|
format: z.ZodDefault<z.ZodEnum<{
|
|
38
|
-
markdown: "markdown";
|
|
39
38
|
json: "json";
|
|
39
|
+
markdown: "markdown";
|
|
40
40
|
}>>;
|
|
41
41
|
writeToFile: z.ZodDefault<z.ZodBoolean>;
|
|
42
42
|
}, z.core.$strip>;
|
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const IdeTargetEnum: z.ZodEnum<{
|
|
3
|
+
auto: "auto";
|
|
4
|
+
chatgpt: "chatgpt";
|
|
3
5
|
"claude-code": "claude-code";
|
|
6
|
+
"claude-desktop": "claude-desktop";
|
|
4
7
|
cursor: "cursor";
|
|
5
|
-
windsurf: "windsurf";
|
|
6
|
-
vscode: "vscode";
|
|
7
8
|
jetbrains: "jetbrains";
|
|
8
|
-
auto: "auto";
|
|
9
|
-
"claude-desktop": "claude-desktop";
|
|
10
9
|
neovim: "neovim";
|
|
11
|
-
chatgpt: "chatgpt";
|
|
12
10
|
opencode: "opencode";
|
|
11
|
+
vscode: "vscode";
|
|
12
|
+
windsurf: "windsurf";
|
|
13
13
|
}>;
|
|
14
14
|
export declare const IdeConfigScopeEnum: z.ZodEnum<{
|
|
15
|
-
project: "project";
|
|
16
15
|
global: "global";
|
|
16
|
+
project: "project";
|
|
17
17
|
}>;
|
|
18
18
|
export declare const generateIdeConfigSchema: z.ZodObject<{
|
|
19
19
|
ide: z.ZodEnum<{
|
|
20
|
+
auto: "auto";
|
|
21
|
+
chatgpt: "chatgpt";
|
|
20
22
|
"claude-code": "claude-code";
|
|
23
|
+
"claude-desktop": "claude-desktop";
|
|
21
24
|
cursor: "cursor";
|
|
22
|
-
windsurf: "windsurf";
|
|
23
|
-
vscode: "vscode";
|
|
24
25
|
jetbrains: "jetbrains";
|
|
25
|
-
auto: "auto";
|
|
26
|
-
"claude-desktop": "claude-desktop";
|
|
27
26
|
neovim: "neovim";
|
|
28
|
-
chatgpt: "chatgpt";
|
|
29
27
|
opencode: "opencode";
|
|
28
|
+
vscode: "vscode";
|
|
29
|
+
windsurf: "windsurf";
|
|
30
30
|
}>;
|
|
31
31
|
projectPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
32
32
|
scope: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
33
|
-
project: "project";
|
|
34
33
|
global: "global";
|
|
34
|
+
project: "project";
|
|
35
35
|
}>>>;
|
|
36
36
|
dryRun: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
37
37
|
}, z.core.$strip>;
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const OrchestrateActionEnum: z.ZodEnum<{
|
|
3
|
-
|
|
4
|
-
"resolve-conflict": "resolve-conflict";
|
|
5
|
-
register: "register";
|
|
3
|
+
brief: "brief";
|
|
6
4
|
heartbeat: "heartbeat";
|
|
5
|
+
journal: "journal";
|
|
7
6
|
lock: "lock";
|
|
7
|
+
register: "register";
|
|
8
|
+
"resolve-conflict": "resolve-conflict";
|
|
9
|
+
status: "status";
|
|
8
10
|
unlock: "unlock";
|
|
9
|
-
brief: "brief";
|
|
10
|
-
journal: "journal";
|
|
11
11
|
}>;
|
|
12
12
|
export declare const ManageContextActionEnum: z.ZodEnum<{
|
|
13
13
|
cleanup: "cleanup";
|
|
14
|
-
load: "load";
|
|
15
|
-
list: "list";
|
|
16
14
|
delete: "delete";
|
|
15
|
+
list: "list";
|
|
16
|
+
load: "load";
|
|
17
17
|
save: "save";
|
|
18
18
|
}>;
|
|
19
19
|
export declare const ContextBudgetActionEnum: z.ZodEnum<{
|
|
20
|
-
status: "status";
|
|
21
20
|
checkpoint: "checkpoint";
|
|
22
21
|
configure: "configure";
|
|
23
|
-
restore: "restore";
|
|
24
22
|
"list-checkpoints": "list-checkpoints";
|
|
25
23
|
optimize: "optimize";
|
|
24
|
+
restore: "restore";
|
|
25
|
+
status: "status";
|
|
26
26
|
}>;
|
|
27
27
|
//# sourceMappingURL=infra.d.ts.map
|
|
@@ -1,88 +1,88 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const DocumentationTypeEnum: z.ZodEnum<{
|
|
3
|
-
"user-guide": "user-guide";
|
|
4
3
|
"api-reference": "api-reference";
|
|
5
|
-
|
|
6
|
-
"setup-guide": "setup-guide";
|
|
7
|
-
changelog: "changelog";
|
|
8
|
-
onboarding: "onboarding";
|
|
9
|
-
faq: "faq";
|
|
4
|
+
"architecture-decision-log": "architecture-decision-log";
|
|
10
5
|
"architecture-doc": "architecture-doc";
|
|
11
|
-
|
|
6
|
+
changelog: "changelog";
|
|
7
|
+
contributing: "contributing";
|
|
12
8
|
"database-doc": "database-doc";
|
|
9
|
+
"deployment-guide": "deployment-guide";
|
|
10
|
+
"executive-summary": "executive-summary";
|
|
11
|
+
faq: "faq";
|
|
13
12
|
"help-articles": "help-articles";
|
|
14
|
-
"release-notes": "release-notes";
|
|
15
|
-
runbook: "runbook";
|
|
16
|
-
"security-doc": "security-doc";
|
|
17
|
-
"architecture-decision-log": "architecture-decision-log";
|
|
18
|
-
contributing: "contributing";
|
|
19
13
|
"mobile-distribution-guide": "mobile-distribution-guide";
|
|
20
|
-
|
|
14
|
+
onboarding: "onboarding";
|
|
21
15
|
"per-spec-executive": "per-spec-executive";
|
|
22
16
|
"per-spec-technical": "per-spec-technical";
|
|
17
|
+
readme: "readme";
|
|
18
|
+
"release-notes": "release-notes";
|
|
19
|
+
runbook: "runbook";
|
|
20
|
+
"security-doc": "security-doc";
|
|
21
|
+
"setup-guide": "setup-guide";
|
|
22
|
+
"user-guide": "user-guide";
|
|
23
23
|
}>;
|
|
24
24
|
export declare const GitActionEnum: z.ZodEnum<{
|
|
25
|
+
"auto-setup": "auto-setup";
|
|
26
|
+
"breaking-check": "breaking-check";
|
|
27
|
+
"check-branch": "check-branch";
|
|
28
|
+
"check-gitflow": "check-gitflow";
|
|
29
|
+
cleanup: "cleanup";
|
|
25
30
|
"create-branch": "create-branch";
|
|
31
|
+
"export-to-issue": "export-to-issue";
|
|
32
|
+
"generate-changelog": "generate-changelog";
|
|
26
33
|
"generate-pr": "generate-pr";
|
|
34
|
+
hotfix: "hotfix";
|
|
35
|
+
"import-issue": "import-issue";
|
|
27
36
|
"link-commits": "link-commits";
|
|
28
|
-
|
|
37
|
+
promote: "promote";
|
|
38
|
+
release: "release";
|
|
39
|
+
"resolve-conflict": "resolve-conflict";
|
|
29
40
|
"setup-hooks": "setup-hooks";
|
|
30
|
-
"check-branch": "check-branch";
|
|
31
41
|
status: "status";
|
|
32
42
|
"sync-branch": "sync-branch";
|
|
33
|
-
"check-gitflow": "check-gitflow";
|
|
34
|
-
"resolve-conflict": "resolve-conflict";
|
|
35
|
-
"breaking-check": "breaking-check";
|
|
36
|
-
release: "release";
|
|
37
|
-
hotfix: "hotfix";
|
|
38
|
-
promote: "promote";
|
|
39
|
-
"auto-setup": "auto-setup";
|
|
40
|
-
cleanup: "cleanup";
|
|
41
|
-
"import-issue": "import-issue";
|
|
42
|
-
"export-to-issue": "export-to-issue";
|
|
43
43
|
"sync-issue": "sync-issue";
|
|
44
44
|
}>;
|
|
45
45
|
export declare const DevLifecycleCategoryEnum: z.ZodEnum<{
|
|
46
|
-
|
|
47
|
-
security: "security";
|
|
48
|
-
testing: "testing";
|
|
49
|
-
project_management: "project_management";
|
|
50
|
-
version_control: "version_control";
|
|
51
|
-
ci_cd: "ci_cd";
|
|
52
|
-
caching: "caching";
|
|
53
|
-
message_queues: "message_queues";
|
|
54
|
-
file_storage: "file_storage";
|
|
55
|
-
realtime: "realtime";
|
|
56
|
-
feature_flags: "feature_flags";
|
|
57
|
-
observability: "observability";
|
|
46
|
+
ai_ml: "ai_ml";
|
|
58
47
|
analytics: "analytics";
|
|
59
48
|
api_documentation: "api_documentation";
|
|
60
|
-
|
|
61
|
-
email_sms_notifications: "email_sms_notifications";
|
|
62
|
-
payments_billing: "payments_billing";
|
|
63
|
-
ai_ml: "ai_ml";
|
|
49
|
+
caching: "caching";
|
|
64
50
|
cdn_edge: "cdn_edge";
|
|
65
|
-
|
|
66
|
-
scheduled_jobs: "scheduled_jobs";
|
|
51
|
+
ci_cd: "ci_cd";
|
|
67
52
|
cms: "cms";
|
|
53
|
+
containerization: "containerization";
|
|
54
|
+
design_prototyping: "design_prototyping";
|
|
55
|
+
email_sms_notifications: "email_sms_notifications";
|
|
56
|
+
feature_flags: "feature_flags";
|
|
57
|
+
file_storage: "file_storage";
|
|
68
58
|
i18n: "i18n";
|
|
69
|
-
rate_limiting: "rate_limiting";
|
|
70
59
|
linting_formatting: "linting_formatting";
|
|
60
|
+
message_queues: "message_queues";
|
|
61
|
+
observability: "observability";
|
|
62
|
+
payments_billing: "payments_billing";
|
|
63
|
+
project_management: "project_management";
|
|
64
|
+
rate_limiting: "rate_limiting";
|
|
65
|
+
realtime: "realtime";
|
|
66
|
+
scheduled_jobs: "scheduled_jobs";
|
|
67
|
+
search: "search";
|
|
68
|
+
security: "security";
|
|
69
|
+
testing: "testing";
|
|
70
|
+
version_control: "version_control";
|
|
71
71
|
}>;
|
|
72
72
|
export declare const PMPlatformEnum: z.ZodEnum<{
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
asana: "asana";
|
|
74
|
+
clickup: "clickup";
|
|
75
75
|
github: "github";
|
|
76
76
|
"github-projects": "github-projects";
|
|
77
|
-
|
|
77
|
+
jira: "jira";
|
|
78
|
+
linear: "linear";
|
|
78
79
|
notion: "notion";
|
|
79
|
-
|
|
80
|
-
clickup: "clickup";
|
|
80
|
+
trello: "trello";
|
|
81
81
|
}>;
|
|
82
82
|
export declare const PMActionEnum: z.ZodEnum<{
|
|
83
|
-
"sync-spec": "sync-spec";
|
|
84
83
|
"create-issue": "create-issue";
|
|
85
84
|
"link-spec": "link-spec";
|
|
85
|
+
"sync-spec": "sync-spec";
|
|
86
86
|
"update-status": "update-status";
|
|
87
87
|
}>;
|
|
88
88
|
//# sourceMappingURL=lifecycle.d.ts.map
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const ConfigureLLMProvidersActionEnum: z.ZodEnum<{
|
|
3
|
-
update: "update";
|
|
4
3
|
add: "add";
|
|
5
4
|
remove: "remove";
|
|
6
5
|
set_priority: "set_priority";
|
|
7
6
|
set_strategy: "set_strategy";
|
|
7
|
+
update: "update";
|
|
8
8
|
}>;
|
|
9
9
|
export declare const LoadBalancingStrategyEnum: z.ZodEnum<{
|
|
10
|
-
"round-robin": "round-robin";
|
|
11
|
-
"least-loaded": "least-loaded";
|
|
12
|
-
"latency-based": "latency-based";
|
|
13
10
|
"cost-based": "cost-based";
|
|
11
|
+
"latency-based": "latency-based";
|
|
12
|
+
"least-loaded": "least-loaded";
|
|
13
|
+
"round-robin": "round-robin";
|
|
14
14
|
}>;
|
|
15
15
|
export declare const LLMCapabilityEnum: z.ZodEnum<{
|
|
16
|
+
chat: "chat";
|
|
16
17
|
code: "code";
|
|
17
|
-
vision: "vision";
|
|
18
18
|
embeddings: "embeddings";
|
|
19
|
-
|
|
19
|
+
vision: "vision";
|
|
20
20
|
}>;
|
|
21
21
|
export declare const QualityTierEnum: z.ZodEnum<{
|
|
22
|
+
high: "high";
|
|
22
23
|
low: "low";
|
|
23
24
|
medium: "medium";
|
|
24
|
-
high: "high";
|
|
25
25
|
}>;
|
|
26
26
|
//# sourceMappingURL=llm-provider-schemas.d.ts.map
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const PluginActionEnum: z.ZodEnum<{
|
|
3
|
-
search: "search";
|
|
4
|
-
info: "info";
|
|
5
|
-
list: "list";
|
|
6
|
-
install: "install";
|
|
7
3
|
activate: "activate";
|
|
8
4
|
deactivate: "deactivate";
|
|
5
|
+
info: "info";
|
|
6
|
+
install: "install";
|
|
7
|
+
list: "list";
|
|
8
|
+
search: "search";
|
|
9
9
|
uninstall: "uninstall";
|
|
10
10
|
update: "update";
|
|
11
11
|
}>;
|
|
12
12
|
export declare const PluginExtensionTypeEnum: z.ZodEnum<{
|
|
13
|
-
tools: "tools";
|
|
14
|
-
workers: "workers";
|
|
15
13
|
analyzers: "analyzers";
|
|
16
14
|
templates: "templates";
|
|
15
|
+
tools: "tools";
|
|
16
|
+
workers: "workers";
|
|
17
17
|
}>;
|
|
18
18
|
export declare const ManagePluginsSchema: {
|
|
19
19
|
action: z.ZodEnum<{
|
|
20
|
-
search: "search";
|
|
21
|
-
info: "info";
|
|
22
|
-
list: "list";
|
|
23
|
-
install: "install";
|
|
24
20
|
activate: "activate";
|
|
25
21
|
deactivate: "deactivate";
|
|
22
|
+
info: "info";
|
|
23
|
+
install: "install";
|
|
24
|
+
list: "list";
|
|
25
|
+
search: "search";
|
|
26
26
|
uninstall: "uninstall";
|
|
27
27
|
update: "update";
|
|
28
28
|
}>;
|
|
@@ -36,10 +36,10 @@ export declare const ScaffoldPluginSchema: {
|
|
|
36
36
|
name: z.ZodString;
|
|
37
37
|
description: z.ZodString;
|
|
38
38
|
extensions: z.ZodArray<z.ZodEnum<{
|
|
39
|
-
tools: "tools";
|
|
40
|
-
workers: "workers";
|
|
41
39
|
analyzers: "analyzers";
|
|
42
40
|
templates: "templates";
|
|
41
|
+
tools: "tools";
|
|
42
|
+
workers: "workers";
|
|
43
43
|
}>>;
|
|
44
44
|
outputDir: z.ZodOptional<z.ZodString>;
|
|
45
45
|
};
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const ProjectGraphActionEnum: z.ZodEnum<{
|
|
3
|
-
status: "status";
|
|
4
|
-
query: "query";
|
|
5
3
|
explain: "explain";
|
|
4
|
+
query: "query";
|
|
6
5
|
rebuild: "rebuild";
|
|
6
|
+
status: "status";
|
|
7
7
|
}>;
|
|
8
8
|
export declare const ProjectGraphQueryKindEnum: z.ZodEnum<{
|
|
9
|
-
|
|
9
|
+
criterion: "criterion";
|
|
10
10
|
decision: "decision";
|
|
11
|
-
spec: "spec";
|
|
12
11
|
file: "file";
|
|
12
|
+
release: "release";
|
|
13
13
|
risk: "risk";
|
|
14
|
-
|
|
14
|
+
spec: "spec";
|
|
15
15
|
test: "test";
|
|
16
|
-
|
|
16
|
+
tool: "tool";
|
|
17
17
|
}>;
|
|
18
18
|
//# sourceMappingURL=project-graph.d.ts.map
|
|
@@ -3,8 +3,8 @@ export declare const RbacRoleEnum: z.ZodEnum<{
|
|
|
3
3
|
Admin: "Admin";
|
|
4
4
|
Architect: "Architect";
|
|
5
5
|
Developer: "Developer";
|
|
6
|
-
Reviewer: "Reviewer";
|
|
7
6
|
Observer: "Observer";
|
|
7
|
+
Reviewer: "Reviewer";
|
|
8
8
|
}>;
|
|
9
9
|
export declare const ConfigureRolesInputSchema: z.ZodObject<{
|
|
10
10
|
projectId: z.ZodString;
|
|
@@ -17,8 +17,8 @@ export declare const AssignRoleInputSchema: z.ZodObject<{
|
|
|
17
17
|
Admin: "Admin";
|
|
18
18
|
Architect: "Architect";
|
|
19
19
|
Developer: "Developer";
|
|
20
|
-
Reviewer: "Reviewer";
|
|
21
20
|
Observer: "Observer";
|
|
21
|
+
Reviewer: "Reviewer";
|
|
22
22
|
}>;
|
|
23
23
|
specId: z.ZodOptional<z.ZodString>;
|
|
24
24
|
assignedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -16,16 +16,16 @@ export declare const UpdateRegistrySchema: z.ZodObject<{
|
|
|
16
16
|
since: z.ZodOptional<z.ZodString>;
|
|
17
17
|
replacedBy: z.ZodOptional<z.ZodString>;
|
|
18
18
|
severity: z.ZodOptional<z.ZodEnum<{
|
|
19
|
-
warning: "warning";
|
|
20
19
|
error: "error";
|
|
20
|
+
warning: "warning";
|
|
21
21
|
}>>;
|
|
22
22
|
}, z.core.$strip>>;
|
|
23
23
|
deprecatedPatterns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24
24
|
pattern: z.ZodString;
|
|
25
25
|
replacedBy: z.ZodString;
|
|
26
26
|
severity: z.ZodEnum<{
|
|
27
|
-
warning: "warning";
|
|
28
27
|
error: "error";
|
|
28
|
+
warning: "warning";
|
|
29
29
|
}>;
|
|
30
30
|
}, z.core.$strip>>>;
|
|
31
31
|
commonMistakes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -33,8 +33,8 @@ export declare const UpdateRegistrySchema: z.ZodObject<{
|
|
|
33
33
|
example: z.ZodOptional<z.ZodString>;
|
|
34
34
|
replacedBy: z.ZodOptional<z.ZodString>;
|
|
35
35
|
severity: z.ZodEnum<{
|
|
36
|
-
warning: "warning";
|
|
37
36
|
error: "error";
|
|
37
|
+
warning: "warning";
|
|
38
38
|
}>;
|
|
39
39
|
}, z.core.$strip>>>;
|
|
40
40
|
}, z.core.$strip>;
|
|
@@ -2,11 +2,11 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const SecurityReportTimeRangeEnum: z.ZodEnum<{
|
|
3
3
|
all: "all";
|
|
4
4
|
last24h: "last24h";
|
|
5
|
-
last7d: "last7d";
|
|
6
5
|
last30d: "last30d";
|
|
6
|
+
last7d: "last7d";
|
|
7
7
|
}>;
|
|
8
8
|
export declare const SecurityReportFormatEnum: z.ZodEnum<{
|
|
9
|
-
summary: "summary";
|
|
10
9
|
detailed: "detailed";
|
|
10
|
+
summary: "summary";
|
|
11
11
|
}>;
|
|
12
12
|
//# sourceMappingURL=runtime-security.d.ts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const SessionFormatEnum: z.ZodEnum<{
|
|
3
|
-
markdown: "markdown";
|
|
4
3
|
json: "json";
|
|
4
|
+
markdown: "markdown";
|
|
5
5
|
}>;
|
|
6
6
|
export declare const SessionHandoffSchema: {
|
|
7
7
|
readonly projectPath: z.ZodString;
|
|
@@ -19,8 +19,8 @@ export declare const ExportSessionSchema: {
|
|
|
19
19
|
readonly projectPath: z.ZodString;
|
|
20
20
|
readonly sessionId: z.ZodOptional<z.ZodString>;
|
|
21
21
|
readonly format: z.ZodOptional<z.ZodEnum<{
|
|
22
|
-
markdown: "markdown";
|
|
23
22
|
json: "json";
|
|
23
|
+
markdown: "markdown";
|
|
24
24
|
}>>;
|
|
25
25
|
};
|
|
26
26
|
export declare const AutoCheckpointSchema: {
|
|
@@ -5,43 +5,43 @@ export declare const SupportedLocaleEnum: z.ZodEnum<{
|
|
|
5
5
|
pt: "pt";
|
|
6
6
|
}>;
|
|
7
7
|
export declare const SpecStatusEnum: z.ZodEnum<{
|
|
8
|
-
draft: "draft";
|
|
9
|
-
review: "review";
|
|
10
8
|
approved: "approved";
|
|
11
|
-
implementing: "implementing";
|
|
12
|
-
done: "done";
|
|
13
9
|
discarded: "discarded";
|
|
10
|
+
done: "done";
|
|
11
|
+
draft: "draft";
|
|
12
|
+
implementing: "implementing";
|
|
13
|
+
review: "review";
|
|
14
14
|
}>;
|
|
15
15
|
export declare const SpecTypeEnum: z.ZodEnum<{
|
|
16
|
-
|
|
17
|
-
refactor: "refactor";
|
|
16
|
+
agent: "agent";
|
|
18
17
|
bugfix: "bugfix";
|
|
19
|
-
infra: "infra";
|
|
20
18
|
docs: "docs";
|
|
19
|
+
feature: "feature";
|
|
20
|
+
infra: "infra";
|
|
21
21
|
project: "project";
|
|
22
|
-
|
|
22
|
+
refactor: "refactor";
|
|
23
23
|
"tech-debt": "tech-debt";
|
|
24
24
|
}>;
|
|
25
25
|
export declare const SpecScopeEnum: z.ZodEnum<{
|
|
26
|
+
architectural: "architectural";
|
|
27
|
+
"cross-module": "cross-module";
|
|
26
28
|
feature: "feature";
|
|
27
29
|
trivial: "trivial";
|
|
28
|
-
"cross-module": "cross-module";
|
|
29
|
-
architectural: "architectural";
|
|
30
30
|
}>;
|
|
31
31
|
export declare const SpecTargetEnum: z.ZodEnum<{
|
|
32
|
-
|
|
32
|
+
android: "android";
|
|
33
33
|
backend: "backend";
|
|
34
|
-
|
|
34
|
+
database: "database";
|
|
35
|
+
frontend: "frontend";
|
|
35
36
|
fullstack: "fullstack";
|
|
36
37
|
infrastructure: "infrastructure";
|
|
37
|
-
database: "database";
|
|
38
38
|
ios: "ios";
|
|
39
|
-
|
|
39
|
+
shared: "shared";
|
|
40
40
|
}>;
|
|
41
41
|
export declare const ExperienceLevelEnum: z.ZodEnum<{
|
|
42
42
|
beginner: "beginner";
|
|
43
|
-
intermediate: "intermediate";
|
|
44
43
|
expert: "expert";
|
|
44
|
+
intermediate: "intermediate";
|
|
45
45
|
}>;
|
|
46
46
|
/** SPEC-313: Work mode enum for init_project and set_work_mode */
|
|
47
47
|
export declare const WorkModeEnum: z.ZodEnum<{
|