mustflow 2.84.0 → 2.85.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -2
- package/dist/cli/commands/script-pack.js +4 -0
- package/dist/cli/i18n/en.js +79 -0
- package/dist/cli/i18n/es.js +79 -0
- package/dist/cli/i18n/fr.js +79 -0
- package/dist/cli/i18n/hi.js +79 -0
- package/dist/cli/i18n/ko.js +79 -0
- package/dist/cli/i18n/zh.js +79 -0
- package/dist/cli/lib/repo-map.js +27 -6
- package/dist/cli/lib/run-root-trust.js +15 -1
- package/dist/cli/lib/script-pack-registry.js +114 -0
- package/dist/cli/lib/validation/index.js +2 -2
- package/dist/cli/lib/validation/primitives.js +4 -1
- package/dist/cli/script-packs/code-change-impact.js +172 -0
- package/dist/cli/script-packs/code-dependency-graph.js +181 -0
- package/dist/cli/script-packs/repo-env-contract.js +156 -0
- package/dist/cli/script-packs/repo-secret-risk-scan.js +147 -0
- package/dist/core/change-impact.js +383 -0
- package/dist/core/change-verification.js +32 -5
- package/dist/core/config-loading.js +121 -4
- package/dist/core/dependency-graph.js +490 -0
- package/dist/core/env-contract.js +450 -0
- package/dist/core/line-endings.js +26 -13
- package/dist/core/public-json-contracts.js +51 -0
- package/dist/core/route-outline.js +57 -5
- package/dist/core/script-pack-suggestions.js +21 -1
- package/dist/core/secret-risk-scan.js +440 -0
- package/package.json +1 -1
- package/schemas/README.md +16 -0
- package/schemas/change-impact-report.schema.json +150 -0
- package/schemas/commands.schema.json +12 -0
- package/schemas/dependency-graph-report.schema.json +149 -0
- package/schemas/env-contract-report.schema.json +203 -0
- package/schemas/secret-risk-scan-report.schema.json +152 -0
- package/templates/default/i18n.toml +16 -10
- package/templates/default/locales/en/.mustflow/skills/INDEX.md +7 -2
- package/templates/default/locales/en/.mustflow/skills/architecture-deepening-review/SKILL.md +28 -11
- package/templates/default/locales/en/.mustflow/skills/astro-code-change/SKILL.md +71 -27
- package/templates/default/locales/en/.mustflow/skills/cross-agent-session-reference/SKILL.md +23 -8
- package/templates/default/locales/en/.mustflow/skills/dependency-upgrade-review/SKILL.md +3 -1
- package/templates/default/locales/en/.mustflow/skills/github-contribution-quality-gate/SKILL.md +48 -11
- package/templates/default/locales/en/.mustflow/skills/javascript-code-change/SKILL.md +15 -13
- package/templates/default/locales/en/.mustflow/skills/node-code-change/SKILL.md +16 -14
- package/templates/default/locales/en/.mustflow/skills/routes.toml +15 -9
- package/templates/default/locales/en/.mustflow/skills/security-privacy-review/SKILL.md +3 -1
- package/templates/default/locales/en/.mustflow/skills/test-suite-performance-review/SKILL.md +314 -0
- package/templates/default/locales/en/.mustflow/skills/typescript-code-change/SKILL.md +13 -10
- package/templates/default/manifest.toml +8 -1
package/README.md
CHANGED
|
@@ -128,9 +128,12 @@ mustflow installs and validates an agent workflow for user projects.
|
|
|
128
128
|
evidence, and dashboard exports so agents justify new dependencies, helper-style surfaces,
|
|
129
129
|
config/schema churn, and broad structural changes before treating added complexity as free.
|
|
130
130
|
- Lists, suggests, and runs bundled read-only utility scripts through `mf script-pack`, including
|
|
131
|
-
`code/outline` for source symbol maps, `code/
|
|
131
|
+
`code/outline` for source symbol maps, `code/dependency-graph` for bounded relative import graphs,
|
|
132
|
+
`code/change-impact` for git-diff impact and verification hints, `code/symbol-read` for focused source snippets,
|
|
132
133
|
`code/route-outline` for Hono, Elysia, Axum, and NestJS route maps, `docs/reference-drift` for stale
|
|
133
134
|
documentation references, `repo/config-chain` for nearby config inheritance,
|
|
135
|
+
`repo/env-contract` for environment-variable contract drift,
|
|
136
|
+
`repo/secret-risk-scan` for plausible hardcoded-secret findings without printing values,
|
|
134
137
|
`repo/generated-boundary` for candidate path safety checks, and `core/text-budget`
|
|
135
138
|
for exact file and JSON-field length budgets, so future checks do not sprawl into top-level
|
|
136
139
|
commands.
|
|
@@ -292,12 +295,16 @@ mf run mustflow_update_apply
|
|
|
292
295
|
| `mf script-pack suggest --changed --json` | Rank optional read-only helpers for current changed files without running those helpers or granting command authority. |
|
|
293
296
|
| `mf script-pack suggest --path <path> --phase before_change` | Rank helpers for an explicit path and workflow phase before deciding which script to run. |
|
|
294
297
|
| `mf script-pack run code/outline scan <path...> --json` | Scan supported source files for symbol headers, line ranges, source anchors, return metadata, and content hashes. |
|
|
298
|
+
| `mf script-pack run code/dependency-graph scan <path...> --json` | Trace bounded relative import, export, require, and dynamic import edges for TypeScript and JavaScript source files. |
|
|
299
|
+
| `mf script-pack run code/change-impact analyze --base HEAD --json` | Analyze changed files and return bounded impact candidates, script-pack hints, and verification intent hints. |
|
|
295
300
|
| `mf script-pack run code/symbol-read read <path> --start-line <line> --json` | Read the focused symbol range or bounded source snippet after `code/outline` identifies the relevant location. |
|
|
296
301
|
| `mf script-pack run code/symbol-read read --anchor <id> --json` | Read the conservative target symbol for a structured `mf:anchor` source marker. |
|
|
297
302
|
| `mf script-pack run code/route-outline scan <path...> --json` | Scan Hono, Elysia, Axum, and NestJS files for route methods, paths, handlers, lifecycle chains, line ranges, and content hashes. |
|
|
298
303
|
| `mf script-pack run code/export-diff compare --base HEAD --json` | Compare exported TypeScript or JavaScript declarations, return metadata, and package surface hints against a git base. |
|
|
299
304
|
| `mf script-pack run docs/reference-drift check [path...] --json` | Check documentation references to `mf` commands, script-pack refs, schema files, and repository paths against current local surfaces. |
|
|
300
305
|
| `mf script-pack run repo/config-chain inspect <path...> --json` | Inspect nearby package, TypeScript, ESLint, Vite, Tailwind, test, and mustflow config files plus static inheritance edges without executing dynamic config code. |
|
|
306
|
+
| `mf script-pack run repo/env-contract scan [path...] --json` | Scan code, CI, docs, config, and env examples for environment-variable contract drift without reading or printing real secret env values. |
|
|
307
|
+
| `mf script-pack run repo/secret-risk-scan scan [path...] --json` | Scan code, docs, config, CI, and examples for plausible hardcoded secrets while reporting only redacted fingerprints. |
|
|
301
308
|
| `mf script-pack run repo/generated-boundary check <path...> --json` | Check whether candidate paths cross generated, ignored, protected, vendor, or cache boundaries before or after edits. |
|
|
302
309
|
| `mf script-pack run repo/related-files map <path...> --json` | Map direct imports, importers, same-basename siblings, and nearby config or package boundaries for source navigation. |
|
|
303
310
|
| `mf script-pack run core/text-budget check <path...> --max <count>` | Check exact text length budgets for files using grapheme counts by default. |
|
|
@@ -330,7 +337,9 @@ Automation and agents should use `--json` output or `mf api serve --stdio` JSONL
|
|
|
330
337
|
For script-pack helper selection, start with `mf script-pack suggest --changed --json` or an
|
|
331
338
|
explicit `--path`. The suggestion report is only a ranking aid: it does not run scripts, prove
|
|
332
339
|
verification, or bypass `.mustflow/config/commands.toml`. A common source-orientation flow is
|
|
333
|
-
`code/outline` first,
|
|
340
|
+
`code/outline` first, `code/dependency-graph` for relative import impact, then `code/symbol-read`
|
|
341
|
+
for the chosen symbol line or source anchor. After a local diff exists, use `code/change-impact`
|
|
342
|
+
to summarize changed surfaces, likely related files, optional helper scripts, and verification hints. After
|
|
334
343
|
public-ish TypeScript or JavaScript changes, use `code/export-diff` to review exported signatures
|
|
335
344
|
and return metadata against a git base. After docs, schema, CLI, or script-pack surface changes, use
|
|
336
345
|
`docs/reference-drift` to catch stale references before treating docs as synchronized. For
|
|
@@ -62,12 +62,16 @@ export function getScriptPackHelp(lang = 'en') {
|
|
|
62
62
|
'mf script-pack suggest --path src/cli/index.ts --phase before_change',
|
|
63
63
|
'mf script-pack suggest --changed --phase after_change --json',
|
|
64
64
|
'mf script-pack run code/outline scan src --json',
|
|
65
|
+
'mf script-pack run code/dependency-graph scan src/cli/index.ts --json',
|
|
66
|
+
'mf script-pack run code/change-impact analyze --base HEAD --json',
|
|
65
67
|
'mf script-pack run code/symbol-read read src/cli/index.ts --start-line 25 --json',
|
|
66
68
|
'mf script-pack run code/route-outline scan src/cli/index.ts --json',
|
|
67
69
|
'mf script-pack run code/export-diff compare --base HEAD~1 --head HEAD --json',
|
|
68
70
|
'mf script-pack run core/text-budget check README.md --max 5000',
|
|
69
71
|
'mf script-pack run docs/reference-drift check README.md schemas/README.md --json',
|
|
70
72
|
'mf script-pack run repo/config-chain inspect src/cli/index.ts --json',
|
|
73
|
+
'mf script-pack run repo/env-contract scan --json',
|
|
74
|
+
'mf script-pack run repo/secret-risk-scan scan src README.md --json',
|
|
71
75
|
'mf script-pack run repo/generated-boundary check src/cli/index.ts --json',
|
|
72
76
|
'mf script-pack run repo/related-files map src/cli/index.ts --json',
|
|
73
77
|
'mf script-pack run core/text-budget --help',
|
package/dist/cli/i18n/en.js
CHANGED
|
@@ -774,6 +774,8 @@ Read these files before working:
|
|
|
774
774
|
"scriptPack.pack.docs.summary": "Documentation reference utility scripts",
|
|
775
775
|
"scriptPack.pack.repo.summary": "Repository-boundary utility scripts",
|
|
776
776
|
"scriptPack.script.codeOutline.summary": "Scan TypeScript and JavaScript files for symbol headers and line ranges",
|
|
777
|
+
"scriptPack.script.codeDependencyGraph.summary": "Trace relative TypeScript and JavaScript dependency graph edges",
|
|
778
|
+
"scriptPack.script.codeChangeImpact.summary": "Analyze changed files for impact, script-pack, and verification hints",
|
|
777
779
|
"scriptPack.script.codeSymbolRead.summary": "Read a bounded source snippet by source anchor, symbol line, or explicit line range",
|
|
778
780
|
"scriptPack.script.codeRouteOutline.summary": "Scan Hono, Elysia, Axum, and NestJS route methods, paths, handlers, and lifecycle chains",
|
|
779
781
|
"scriptPack.script.codeExportDiff.summary": "Compare exported source signatures and return metadata across git refs",
|
|
@@ -912,6 +914,48 @@ Read these files before working:
|
|
|
912
914
|
"generatedBoundary.error.missingAction": "Specify a generated-boundary action: check",
|
|
913
915
|
"generatedBoundary.error.unknownAction": "Unknown generated-boundary action: {action}",
|
|
914
916
|
"generatedBoundary.error.missingPath": "Provide at least one path to check",
|
|
917
|
+
"dependencyGraph.help.summary": "Trace bounded relative import, export, require, and dynamic import edges for TypeScript and JavaScript source files.",
|
|
918
|
+
"dependencyGraph.help.option.maxDepth": "Maximum dependency depth from target files. Default: 2",
|
|
919
|
+
"dependencyGraph.help.option.maxFiles": "Maximum number of source files to scan. Default: 1000",
|
|
920
|
+
"dependencyGraph.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
921
|
+
"dependencyGraph.help.option.maxNodes": "Maximum number of graph nodes to report. Default: 300",
|
|
922
|
+
"dependencyGraph.help.option.maxEdges": "Maximum number of graph edges to report. Default: 800",
|
|
923
|
+
"dependencyGraph.help.exit.ok": "The dependency graph completed without input or scan-limit findings",
|
|
924
|
+
"dependencyGraph.help.exit.fail": "The dependency graph found invalid input, unreadable paths, or scan limits",
|
|
925
|
+
"dependencyGraph.title": "mustflow dependency graph",
|
|
926
|
+
"dependencyGraph.label.targets": "Targets",
|
|
927
|
+
"dependencyGraph.label.nodes": "Nodes",
|
|
928
|
+
"dependencyGraph.label.edges": "Edges",
|
|
929
|
+
"dependencyGraph.label.cycles": "Cycles",
|
|
930
|
+
"dependencyGraph.label.truncated": "Truncated",
|
|
931
|
+
"dependencyGraph.label.cycleList": "Cycle hints",
|
|
932
|
+
"dependencyGraph.label.findings": "Findings",
|
|
933
|
+
"dependencyGraph.label.issues": "Issues",
|
|
934
|
+
"dependencyGraph.clean": "No relative dependency edges were found.",
|
|
935
|
+
"dependencyGraph.error.missingAction": "Specify a dependency-graph action: scan",
|
|
936
|
+
"dependencyGraph.error.unknownAction": "Unknown dependency-graph action: {action}",
|
|
937
|
+
"dependencyGraph.error.missingPath": "Provide at least one path to scan",
|
|
938
|
+
"dependencyGraph.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
939
|
+
"changeImpact.help.summary": "Analyze git changes and return bounded file-impact, script-pack, and verification hints.",
|
|
940
|
+
"changeImpact.help.option.base": "Git base ref to compare from. Default: HEAD",
|
|
941
|
+
"changeImpact.help.option.head": "Git head ref to compare to. Omit to compare the base with the working tree.",
|
|
942
|
+
"changeImpact.help.option.maxFiles": "Maximum number of changed files to inspect. Default: 200",
|
|
943
|
+
"changeImpact.help.option.maxImpacts": "Maximum number of impact candidates to report. Default: 300",
|
|
944
|
+
"changeImpact.help.option.maxFileBytes": "Maximum bytes to read from each source file while tracing dependencies. Default: 262144",
|
|
945
|
+
"changeImpact.help.exit.ok": "The change-impact analysis completed without input or scan-limit findings",
|
|
946
|
+
"changeImpact.help.exit.fail": "The change-impact analysis found invalid git input or scan limits",
|
|
947
|
+
"changeImpact.title": "mustflow change impact",
|
|
948
|
+
"changeImpact.label.changedFiles": "Changed files",
|
|
949
|
+
"changeImpact.label.impacts": "Impacts",
|
|
950
|
+
"changeImpact.label.truncated": "Truncated",
|
|
951
|
+
"changeImpact.label.scriptHints": "Script hints",
|
|
952
|
+
"changeImpact.label.verificationHints": "Verification hints",
|
|
953
|
+
"changeImpact.label.findings": "Findings",
|
|
954
|
+
"changeImpact.label.issues": "Issues",
|
|
955
|
+
"changeImpact.clean": "No changed files were found for the selected git range.",
|
|
956
|
+
"changeImpact.error.missingAction": "Specify a change-impact action: analyze",
|
|
957
|
+
"changeImpact.error.unknownAction": "Unknown change-impact action: {action}",
|
|
958
|
+
"changeImpact.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
915
959
|
"relatedFiles.help.summary": "Map direct imports, importers, sibling files, and nearby config boundaries for source-oriented repository navigation.",
|
|
916
960
|
"relatedFiles.help.option.maxFiles": "Maximum number of source or related files to scan. Default: 1000",
|
|
917
961
|
"relatedFiles.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
@@ -948,6 +992,41 @@ Read these files before working:
|
|
|
948
992
|
"configChain.error.unknownAction": "Unknown config-chain action: {action}",
|
|
949
993
|
"configChain.error.missingPath": "Provide at least one path to inspect",
|
|
950
994
|
"configChain.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
995
|
+
"scriptPack.script.envContract.summary": "Scan repository environment-variable contracts without reading secret values",
|
|
996
|
+
"envContract.help.summary": "Scan code, CI, docs, config, and env examples for environment variable contract drift without printing env values.",
|
|
997
|
+
"envContract.help.option.maxFiles": "Maximum number of files to inspect. Default: 1000",
|
|
998
|
+
"envContract.help.option.maxFileBytes": "Maximum bytes to read from each inspected file. Default: 262144",
|
|
999
|
+
"envContract.help.option.maxKeys": "Maximum number of env keys to report. Default: 300",
|
|
1000
|
+
"envContract.help.exit.ok": "The env contract scan completed without blocking findings",
|
|
1001
|
+
"envContract.help.exit.fail": "The env contract scan found invalid input, unreadable files, or contract findings",
|
|
1002
|
+
"envContract.title": "mustflow env contract",
|
|
1003
|
+
"envContract.label.files": "Files",
|
|
1004
|
+
"envContract.label.keys": "Keys",
|
|
1005
|
+
"envContract.label.findings": "Findings",
|
|
1006
|
+
"envContract.label.truncated": "Truncated",
|
|
1007
|
+
"envContract.label.issues": "Issues",
|
|
1008
|
+
"envContract.clean": "No environment variable references were found.",
|
|
1009
|
+
"envContract.error.missingAction": "Specify an env-contract action: scan",
|
|
1010
|
+
"envContract.error.unknownAction": "Unknown env-contract action: {action}",
|
|
1011
|
+
"envContract.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
1012
|
+
"scriptPack.script.secretRiskScan.summary": "Scan repository files for plausible secrets without printing secret values",
|
|
1013
|
+
"secretRiskScan.help.summary": "Scan code, docs, config, CI, and examples for plausible hardcoded secrets without printing secret values.",
|
|
1014
|
+
"secretRiskScan.help.option.maxFiles": "Maximum number of files to inspect. Default: 1000",
|
|
1015
|
+
"secretRiskScan.help.option.maxFileBytes": "Maximum bytes to read from each inspected file. Default: 262144",
|
|
1016
|
+
"secretRiskScan.help.option.maxFindings": "Maximum number of findings to report. Default: 200",
|
|
1017
|
+
"secretRiskScan.help.exit.ok": "The secret-risk scan completed without blocking findings",
|
|
1018
|
+
"secretRiskScan.help.exit.fail": "The secret-risk scan found invalid input, unreadable files, or secret-risk findings",
|
|
1019
|
+
"secretRiskScan.title": "mustflow secret risk scan",
|
|
1020
|
+
"secretRiskScan.label.files": "Files",
|
|
1021
|
+
"secretRiskScan.label.findings": "Findings",
|
|
1022
|
+
"secretRiskScan.label.highOrCritical": "High or critical",
|
|
1023
|
+
"secretRiskScan.label.skippedSecretFiles": "Skipped secret files",
|
|
1024
|
+
"secretRiskScan.label.truncated": "Truncated",
|
|
1025
|
+
"secretRiskScan.label.issues": "Issues",
|
|
1026
|
+
"secretRiskScan.clean": "No plausible hardcoded secrets were found.",
|
|
1027
|
+
"secretRiskScan.error.missingAction": "Specify a secret-risk-scan action: scan",
|
|
1028
|
+
"secretRiskScan.error.unknownAction": "Unknown secret-risk-scan action: {action}",
|
|
1029
|
+
"secretRiskScan.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
951
1030
|
"run.help.summary": "Run a configured oneshot command from .mustflow/config/commands.toml.",
|
|
952
1031
|
"run.help.option.dryRun": "Print a non-executing command plan",
|
|
953
1032
|
"run.help.option.planOnly": "Alias for --dry-run",
|
package/dist/cli/i18n/es.js
CHANGED
|
@@ -774,6 +774,8 @@ Lee estos archivos antes de trabajar:
|
|
|
774
774
|
"scriptPack.pack.docs.summary": "Documentation reference utility scripts",
|
|
775
775
|
"scriptPack.pack.repo.summary": "Repository-boundary utility scripts",
|
|
776
776
|
"scriptPack.script.codeOutline.summary": "Scan TypeScript and JavaScript files for symbol headers and line ranges",
|
|
777
|
+
"scriptPack.script.codeDependencyGraph.summary": "Trace relative TypeScript and JavaScript dependency graph edges",
|
|
778
|
+
"scriptPack.script.codeChangeImpact.summary": "Analyze changed files for impact, script-pack, and verification hints",
|
|
777
779
|
"scriptPack.script.codeSymbolRead.summary": "Read a bounded source snippet by source anchor, symbol line, or explicit line range",
|
|
778
780
|
"scriptPack.script.codeRouteOutline.summary": "Scan Hono, Elysia, Axum, and NestJS route methods, paths, handlers, and lifecycle chains",
|
|
779
781
|
"scriptPack.script.codeExportDiff.summary": "Compare exported source signatures and return metadata across git refs",
|
|
@@ -912,6 +914,48 @@ Lee estos archivos antes de trabajar:
|
|
|
912
914
|
"generatedBoundary.error.missingAction": "Specify a generated-boundary action: check",
|
|
913
915
|
"generatedBoundary.error.unknownAction": "Unknown generated-boundary action: {action}",
|
|
914
916
|
"generatedBoundary.error.missingPath": "Provide at least one path to check",
|
|
917
|
+
"dependencyGraph.help.summary": "Trace bounded relative import, export, require, and dynamic import edges for TypeScript and JavaScript source files.",
|
|
918
|
+
"dependencyGraph.help.option.maxDepth": "Maximum dependency depth from target files. Default: 2",
|
|
919
|
+
"dependencyGraph.help.option.maxFiles": "Maximum number of source files to scan. Default: 1000",
|
|
920
|
+
"dependencyGraph.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
921
|
+
"dependencyGraph.help.option.maxNodes": "Maximum number of graph nodes to report. Default: 300",
|
|
922
|
+
"dependencyGraph.help.option.maxEdges": "Maximum number of graph edges to report. Default: 800",
|
|
923
|
+
"dependencyGraph.help.exit.ok": "The dependency graph completed without input or scan-limit findings",
|
|
924
|
+
"dependencyGraph.help.exit.fail": "The dependency graph found invalid input, unreadable paths, or scan limits",
|
|
925
|
+
"dependencyGraph.title": "mustflow dependency graph",
|
|
926
|
+
"dependencyGraph.label.targets": "Targets",
|
|
927
|
+
"dependencyGraph.label.nodes": "Nodes",
|
|
928
|
+
"dependencyGraph.label.edges": "Edges",
|
|
929
|
+
"dependencyGraph.label.cycles": "Cycles",
|
|
930
|
+
"dependencyGraph.label.truncated": "Truncated",
|
|
931
|
+
"dependencyGraph.label.cycleList": "Cycle hints",
|
|
932
|
+
"dependencyGraph.label.findings": "Findings",
|
|
933
|
+
"dependencyGraph.label.issues": "Issues",
|
|
934
|
+
"dependencyGraph.clean": "No relative dependency edges were found.",
|
|
935
|
+
"dependencyGraph.error.missingAction": "Specify a dependency-graph action: scan",
|
|
936
|
+
"dependencyGraph.error.unknownAction": "Unknown dependency-graph action: {action}",
|
|
937
|
+
"dependencyGraph.error.missingPath": "Provide at least one path to scan",
|
|
938
|
+
"dependencyGraph.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
939
|
+
"changeImpact.help.summary": "Analyze git changes and return bounded file-impact, script-pack, and verification hints.",
|
|
940
|
+
"changeImpact.help.option.base": "Git base ref to compare from. Default: HEAD",
|
|
941
|
+
"changeImpact.help.option.head": "Git head ref to compare to. Omit to compare the base with the working tree.",
|
|
942
|
+
"changeImpact.help.option.maxFiles": "Maximum number of changed files to inspect. Default: 200",
|
|
943
|
+
"changeImpact.help.option.maxImpacts": "Maximum number of impact candidates to report. Default: 300",
|
|
944
|
+
"changeImpact.help.option.maxFileBytes": "Maximum bytes to read from each source file while tracing dependencies. Default: 262144",
|
|
945
|
+
"changeImpact.help.exit.ok": "The change-impact analysis completed without input or scan-limit findings",
|
|
946
|
+
"changeImpact.help.exit.fail": "The change-impact analysis found invalid git input or scan limits",
|
|
947
|
+
"changeImpact.title": "mustflow change impact",
|
|
948
|
+
"changeImpact.label.changedFiles": "Changed files",
|
|
949
|
+
"changeImpact.label.impacts": "Impacts",
|
|
950
|
+
"changeImpact.label.truncated": "Truncated",
|
|
951
|
+
"changeImpact.label.scriptHints": "Script hints",
|
|
952
|
+
"changeImpact.label.verificationHints": "Verification hints",
|
|
953
|
+
"changeImpact.label.findings": "Findings",
|
|
954
|
+
"changeImpact.label.issues": "Issues",
|
|
955
|
+
"changeImpact.clean": "No changed files were found for the selected git range.",
|
|
956
|
+
"changeImpact.error.missingAction": "Specify a change-impact action: analyze",
|
|
957
|
+
"changeImpact.error.unknownAction": "Unknown change-impact action: {action}",
|
|
958
|
+
"changeImpact.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
915
959
|
"relatedFiles.help.summary": "Map direct imports, importers, sibling files, and nearby config boundaries for source-oriented repository navigation.",
|
|
916
960
|
"relatedFiles.help.option.maxFiles": "Maximum number of source or related files to scan. Default: 1000",
|
|
917
961
|
"relatedFiles.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
@@ -948,6 +992,41 @@ Lee estos archivos antes de trabajar:
|
|
|
948
992
|
"configChain.error.unknownAction": "Unknown config-chain action: {action}",
|
|
949
993
|
"configChain.error.missingPath": "Provide at least one path to inspect",
|
|
950
994
|
"configChain.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
995
|
+
"scriptPack.script.envContract.summary": "Scan repository environment-variable contracts without reading secret values",
|
|
996
|
+
"envContract.help.summary": "Scan code, CI, docs, config, and env examples for environment variable contract drift without printing env values.",
|
|
997
|
+
"envContract.help.option.maxFiles": "Maximum number of files to inspect. Default: 1000",
|
|
998
|
+
"envContract.help.option.maxFileBytes": "Maximum bytes to read from each inspected file. Default: 262144",
|
|
999
|
+
"envContract.help.option.maxKeys": "Maximum number of env keys to report. Default: 300",
|
|
1000
|
+
"envContract.help.exit.ok": "The env contract scan completed without blocking findings",
|
|
1001
|
+
"envContract.help.exit.fail": "The env contract scan found invalid input, unreadable files, or contract findings",
|
|
1002
|
+
"envContract.title": "mustflow env contract",
|
|
1003
|
+
"envContract.label.files": "Files",
|
|
1004
|
+
"envContract.label.keys": "Keys",
|
|
1005
|
+
"envContract.label.findings": "Findings",
|
|
1006
|
+
"envContract.label.truncated": "Truncated",
|
|
1007
|
+
"envContract.label.issues": "Issues",
|
|
1008
|
+
"envContract.clean": "No environment variable references were found.",
|
|
1009
|
+
"envContract.error.missingAction": "Specify an env-contract action: scan",
|
|
1010
|
+
"envContract.error.unknownAction": "Unknown env-contract action: {action}",
|
|
1011
|
+
"envContract.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
1012
|
+
"scriptPack.script.secretRiskScan.summary": "Scan repository files for plausible secrets without printing secret values",
|
|
1013
|
+
"secretRiskScan.help.summary": "Scan code, docs, config, CI, and examples for plausible hardcoded secrets without printing secret values.",
|
|
1014
|
+
"secretRiskScan.help.option.maxFiles": "Maximum number of files to inspect. Default: 1000",
|
|
1015
|
+
"secretRiskScan.help.option.maxFileBytes": "Maximum bytes to read from each inspected file. Default: 262144",
|
|
1016
|
+
"secretRiskScan.help.option.maxFindings": "Maximum number of findings to report. Default: 200",
|
|
1017
|
+
"secretRiskScan.help.exit.ok": "The secret-risk scan completed without blocking findings",
|
|
1018
|
+
"secretRiskScan.help.exit.fail": "The secret-risk scan found invalid input, unreadable files, or secret-risk findings",
|
|
1019
|
+
"secretRiskScan.title": "mustflow secret risk scan",
|
|
1020
|
+
"secretRiskScan.label.files": "Files",
|
|
1021
|
+
"secretRiskScan.label.findings": "Findings",
|
|
1022
|
+
"secretRiskScan.label.highOrCritical": "High or critical",
|
|
1023
|
+
"secretRiskScan.label.skippedSecretFiles": "Skipped secret files",
|
|
1024
|
+
"secretRiskScan.label.truncated": "Truncated",
|
|
1025
|
+
"secretRiskScan.label.issues": "Issues",
|
|
1026
|
+
"secretRiskScan.clean": "No plausible hardcoded secrets were found.",
|
|
1027
|
+
"secretRiskScan.error.missingAction": "Specify a secret-risk-scan action: scan",
|
|
1028
|
+
"secretRiskScan.error.unknownAction": "Unknown secret-risk-scan action: {action}",
|
|
1029
|
+
"secretRiskScan.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
951
1030
|
"run.help.summary": "Ejecuta un comando configurado de una sola ejecución desde .mustflow/config/commands.toml.",
|
|
952
1031
|
"run.help.option.dryRun": "Imprime un plan de comando sin ejecutarlo",
|
|
953
1032
|
"run.help.option.planOnly": "Alias de --dry-run",
|
package/dist/cli/i18n/fr.js
CHANGED
|
@@ -774,6 +774,8 @@ Lisez ces fichiers avant de travailler :
|
|
|
774
774
|
"scriptPack.pack.docs.summary": "Documentation reference utility scripts",
|
|
775
775
|
"scriptPack.pack.repo.summary": "Repository-boundary utility scripts",
|
|
776
776
|
"scriptPack.script.codeOutline.summary": "Scan TypeScript and JavaScript files for symbol headers and line ranges",
|
|
777
|
+
"scriptPack.script.codeDependencyGraph.summary": "Trace relative TypeScript and JavaScript dependency graph edges",
|
|
778
|
+
"scriptPack.script.codeChangeImpact.summary": "Analyze changed files for impact, script-pack, and verification hints",
|
|
777
779
|
"scriptPack.script.codeSymbolRead.summary": "Read a bounded source snippet by source anchor, symbol line, or explicit line range",
|
|
778
780
|
"scriptPack.script.codeRouteOutline.summary": "Scan Hono, Elysia, Axum, and NestJS route methods, paths, handlers, and lifecycle chains",
|
|
779
781
|
"scriptPack.script.codeExportDiff.summary": "Compare exported source signatures and return metadata across git refs",
|
|
@@ -912,6 +914,48 @@ Lisez ces fichiers avant de travailler :
|
|
|
912
914
|
"generatedBoundary.error.missingAction": "Specify a generated-boundary action: check",
|
|
913
915
|
"generatedBoundary.error.unknownAction": "Unknown generated-boundary action: {action}",
|
|
914
916
|
"generatedBoundary.error.missingPath": "Provide at least one path to check",
|
|
917
|
+
"dependencyGraph.help.summary": "Trace bounded relative import, export, require, and dynamic import edges for TypeScript and JavaScript source files.",
|
|
918
|
+
"dependencyGraph.help.option.maxDepth": "Maximum dependency depth from target files. Default: 2",
|
|
919
|
+
"dependencyGraph.help.option.maxFiles": "Maximum number of source files to scan. Default: 1000",
|
|
920
|
+
"dependencyGraph.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
921
|
+
"dependencyGraph.help.option.maxNodes": "Maximum number of graph nodes to report. Default: 300",
|
|
922
|
+
"dependencyGraph.help.option.maxEdges": "Maximum number of graph edges to report. Default: 800",
|
|
923
|
+
"dependencyGraph.help.exit.ok": "The dependency graph completed without input or scan-limit findings",
|
|
924
|
+
"dependencyGraph.help.exit.fail": "The dependency graph found invalid input, unreadable paths, or scan limits",
|
|
925
|
+
"dependencyGraph.title": "mustflow dependency graph",
|
|
926
|
+
"dependencyGraph.label.targets": "Targets",
|
|
927
|
+
"dependencyGraph.label.nodes": "Nodes",
|
|
928
|
+
"dependencyGraph.label.edges": "Edges",
|
|
929
|
+
"dependencyGraph.label.cycles": "Cycles",
|
|
930
|
+
"dependencyGraph.label.truncated": "Truncated",
|
|
931
|
+
"dependencyGraph.label.cycleList": "Cycle hints",
|
|
932
|
+
"dependencyGraph.label.findings": "Findings",
|
|
933
|
+
"dependencyGraph.label.issues": "Issues",
|
|
934
|
+
"dependencyGraph.clean": "No relative dependency edges were found.",
|
|
935
|
+
"dependencyGraph.error.missingAction": "Specify a dependency-graph action: scan",
|
|
936
|
+
"dependencyGraph.error.unknownAction": "Unknown dependency-graph action: {action}",
|
|
937
|
+
"dependencyGraph.error.missingPath": "Provide at least one path to scan",
|
|
938
|
+
"dependencyGraph.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
939
|
+
"changeImpact.help.summary": "Analyze git changes and return bounded file-impact, script-pack, and verification hints.",
|
|
940
|
+
"changeImpact.help.option.base": "Git base ref to compare from. Default: HEAD",
|
|
941
|
+
"changeImpact.help.option.head": "Git head ref to compare to. Omit to compare the base with the working tree.",
|
|
942
|
+
"changeImpact.help.option.maxFiles": "Maximum number of changed files to inspect. Default: 200",
|
|
943
|
+
"changeImpact.help.option.maxImpacts": "Maximum number of impact candidates to report. Default: 300",
|
|
944
|
+
"changeImpact.help.option.maxFileBytes": "Maximum bytes to read from each source file while tracing dependencies. Default: 262144",
|
|
945
|
+
"changeImpact.help.exit.ok": "The change-impact analysis completed without input or scan-limit findings",
|
|
946
|
+
"changeImpact.help.exit.fail": "The change-impact analysis found invalid git input or scan limits",
|
|
947
|
+
"changeImpact.title": "mustflow change impact",
|
|
948
|
+
"changeImpact.label.changedFiles": "Changed files",
|
|
949
|
+
"changeImpact.label.impacts": "Impacts",
|
|
950
|
+
"changeImpact.label.truncated": "Truncated",
|
|
951
|
+
"changeImpact.label.scriptHints": "Script hints",
|
|
952
|
+
"changeImpact.label.verificationHints": "Verification hints",
|
|
953
|
+
"changeImpact.label.findings": "Findings",
|
|
954
|
+
"changeImpact.label.issues": "Issues",
|
|
955
|
+
"changeImpact.clean": "No changed files were found for the selected git range.",
|
|
956
|
+
"changeImpact.error.missingAction": "Specify a change-impact action: analyze",
|
|
957
|
+
"changeImpact.error.unknownAction": "Unknown change-impact action: {action}",
|
|
958
|
+
"changeImpact.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
915
959
|
"relatedFiles.help.summary": "Map direct imports, importers, sibling files, and nearby config boundaries for source-oriented repository navigation.",
|
|
916
960
|
"relatedFiles.help.option.maxFiles": "Maximum number of source or related files to scan. Default: 1000",
|
|
917
961
|
"relatedFiles.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
@@ -948,6 +992,41 @@ Lisez ces fichiers avant de travailler :
|
|
|
948
992
|
"configChain.error.unknownAction": "Unknown config-chain action: {action}",
|
|
949
993
|
"configChain.error.missingPath": "Provide at least one path to inspect",
|
|
950
994
|
"configChain.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
995
|
+
"scriptPack.script.envContract.summary": "Scan repository environment-variable contracts without reading secret values",
|
|
996
|
+
"envContract.help.summary": "Scan code, CI, docs, config, and env examples for environment variable contract drift without printing env values.",
|
|
997
|
+
"envContract.help.option.maxFiles": "Maximum number of files to inspect. Default: 1000",
|
|
998
|
+
"envContract.help.option.maxFileBytes": "Maximum bytes to read from each inspected file. Default: 262144",
|
|
999
|
+
"envContract.help.option.maxKeys": "Maximum number of env keys to report. Default: 300",
|
|
1000
|
+
"envContract.help.exit.ok": "The env contract scan completed without blocking findings",
|
|
1001
|
+
"envContract.help.exit.fail": "The env contract scan found invalid input, unreadable files, or contract findings",
|
|
1002
|
+
"envContract.title": "mustflow env contract",
|
|
1003
|
+
"envContract.label.files": "Files",
|
|
1004
|
+
"envContract.label.keys": "Keys",
|
|
1005
|
+
"envContract.label.findings": "Findings",
|
|
1006
|
+
"envContract.label.truncated": "Truncated",
|
|
1007
|
+
"envContract.label.issues": "Issues",
|
|
1008
|
+
"envContract.clean": "No environment variable references were found.",
|
|
1009
|
+
"envContract.error.missingAction": "Specify an env-contract action: scan",
|
|
1010
|
+
"envContract.error.unknownAction": "Unknown env-contract action: {action}",
|
|
1011
|
+
"envContract.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
1012
|
+
"scriptPack.script.secretRiskScan.summary": "Scan repository files for plausible secrets without printing secret values",
|
|
1013
|
+
"secretRiskScan.help.summary": "Scan code, docs, config, CI, and examples for plausible hardcoded secrets without printing secret values.",
|
|
1014
|
+
"secretRiskScan.help.option.maxFiles": "Maximum number of files to inspect. Default: 1000",
|
|
1015
|
+
"secretRiskScan.help.option.maxFileBytes": "Maximum bytes to read from each inspected file. Default: 262144",
|
|
1016
|
+
"secretRiskScan.help.option.maxFindings": "Maximum number of findings to report. Default: 200",
|
|
1017
|
+
"secretRiskScan.help.exit.ok": "The secret-risk scan completed without blocking findings",
|
|
1018
|
+
"secretRiskScan.help.exit.fail": "The secret-risk scan found invalid input, unreadable files, or secret-risk findings",
|
|
1019
|
+
"secretRiskScan.title": "mustflow secret risk scan",
|
|
1020
|
+
"secretRiskScan.label.files": "Files",
|
|
1021
|
+
"secretRiskScan.label.findings": "Findings",
|
|
1022
|
+
"secretRiskScan.label.highOrCritical": "High or critical",
|
|
1023
|
+
"secretRiskScan.label.skippedSecretFiles": "Skipped secret files",
|
|
1024
|
+
"secretRiskScan.label.truncated": "Truncated",
|
|
1025
|
+
"secretRiskScan.label.issues": "Issues",
|
|
1026
|
+
"secretRiskScan.clean": "No plausible hardcoded secrets were found.",
|
|
1027
|
+
"secretRiskScan.error.missingAction": "Specify a secret-risk-scan action: scan",
|
|
1028
|
+
"secretRiskScan.error.unknownAction": "Unknown secret-risk-scan action: {action}",
|
|
1029
|
+
"secretRiskScan.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
951
1030
|
"run.help.summary": "Exécute une commande configurée à exécution unique depuis .mustflow/config/commands.toml.",
|
|
952
1031
|
"run.help.option.dryRun": "Imprime un plan de commande sans l'exécuter",
|
|
953
1032
|
"run.help.option.planOnly": "Alias de --dry-run",
|
package/dist/cli/i18n/hi.js
CHANGED
|
@@ -774,6 +774,8 @@ export const hiMessages = {
|
|
|
774
774
|
"scriptPack.pack.docs.summary": "Documentation reference utility scripts",
|
|
775
775
|
"scriptPack.pack.repo.summary": "Repository-boundary utility scripts",
|
|
776
776
|
"scriptPack.script.codeOutline.summary": "Scan TypeScript and JavaScript files for symbol headers and line ranges",
|
|
777
|
+
"scriptPack.script.codeDependencyGraph.summary": "Trace relative TypeScript and JavaScript dependency graph edges",
|
|
778
|
+
"scriptPack.script.codeChangeImpact.summary": "Analyze changed files for impact, script-pack, and verification hints",
|
|
777
779
|
"scriptPack.script.codeSymbolRead.summary": "Read a bounded source snippet by source anchor, symbol line, or explicit line range",
|
|
778
780
|
"scriptPack.script.codeRouteOutline.summary": "Scan Hono, Elysia, Axum, and NestJS route methods, paths, handlers, and lifecycle chains",
|
|
779
781
|
"scriptPack.script.codeExportDiff.summary": "Compare exported source signatures and return metadata across git refs",
|
|
@@ -912,6 +914,48 @@ export const hiMessages = {
|
|
|
912
914
|
"generatedBoundary.error.missingAction": "Specify a generated-boundary action: check",
|
|
913
915
|
"generatedBoundary.error.unknownAction": "Unknown generated-boundary action: {action}",
|
|
914
916
|
"generatedBoundary.error.missingPath": "Provide at least one path to check",
|
|
917
|
+
"dependencyGraph.help.summary": "Trace bounded relative import, export, require, and dynamic import edges for TypeScript and JavaScript source files.",
|
|
918
|
+
"dependencyGraph.help.option.maxDepth": "Maximum dependency depth from target files. Default: 2",
|
|
919
|
+
"dependencyGraph.help.option.maxFiles": "Maximum number of source files to scan. Default: 1000",
|
|
920
|
+
"dependencyGraph.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
921
|
+
"dependencyGraph.help.option.maxNodes": "Maximum number of graph nodes to report. Default: 300",
|
|
922
|
+
"dependencyGraph.help.option.maxEdges": "Maximum number of graph edges to report. Default: 800",
|
|
923
|
+
"dependencyGraph.help.exit.ok": "The dependency graph completed without input or scan-limit findings",
|
|
924
|
+
"dependencyGraph.help.exit.fail": "The dependency graph found invalid input, unreadable paths, or scan limits",
|
|
925
|
+
"dependencyGraph.title": "mustflow dependency graph",
|
|
926
|
+
"dependencyGraph.label.targets": "Targets",
|
|
927
|
+
"dependencyGraph.label.nodes": "Nodes",
|
|
928
|
+
"dependencyGraph.label.edges": "Edges",
|
|
929
|
+
"dependencyGraph.label.cycles": "Cycles",
|
|
930
|
+
"dependencyGraph.label.truncated": "Truncated",
|
|
931
|
+
"dependencyGraph.label.cycleList": "Cycle hints",
|
|
932
|
+
"dependencyGraph.label.findings": "Findings",
|
|
933
|
+
"dependencyGraph.label.issues": "Issues",
|
|
934
|
+
"dependencyGraph.clean": "No relative dependency edges were found.",
|
|
935
|
+
"dependencyGraph.error.missingAction": "Specify a dependency-graph action: scan",
|
|
936
|
+
"dependencyGraph.error.unknownAction": "Unknown dependency-graph action: {action}",
|
|
937
|
+
"dependencyGraph.error.missingPath": "Provide at least one path to scan",
|
|
938
|
+
"dependencyGraph.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
939
|
+
"changeImpact.help.summary": "Analyze git changes and return bounded file-impact, script-pack, and verification hints.",
|
|
940
|
+
"changeImpact.help.option.base": "Git base ref to compare from. Default: HEAD",
|
|
941
|
+
"changeImpact.help.option.head": "Git head ref to compare to. Omit to compare the base with the working tree.",
|
|
942
|
+
"changeImpact.help.option.maxFiles": "Maximum number of changed files to inspect. Default: 200",
|
|
943
|
+
"changeImpact.help.option.maxImpacts": "Maximum number of impact candidates to report. Default: 300",
|
|
944
|
+
"changeImpact.help.option.maxFileBytes": "Maximum bytes to read from each source file while tracing dependencies. Default: 262144",
|
|
945
|
+
"changeImpact.help.exit.ok": "The change-impact analysis completed without input or scan-limit findings",
|
|
946
|
+
"changeImpact.help.exit.fail": "The change-impact analysis found invalid git input or scan limits",
|
|
947
|
+
"changeImpact.title": "mustflow change impact",
|
|
948
|
+
"changeImpact.label.changedFiles": "Changed files",
|
|
949
|
+
"changeImpact.label.impacts": "Impacts",
|
|
950
|
+
"changeImpact.label.truncated": "Truncated",
|
|
951
|
+
"changeImpact.label.scriptHints": "Script hints",
|
|
952
|
+
"changeImpact.label.verificationHints": "Verification hints",
|
|
953
|
+
"changeImpact.label.findings": "Findings",
|
|
954
|
+
"changeImpact.label.issues": "Issues",
|
|
955
|
+
"changeImpact.clean": "No changed files were found for the selected git range.",
|
|
956
|
+
"changeImpact.error.missingAction": "Specify a change-impact action: analyze",
|
|
957
|
+
"changeImpact.error.unknownAction": "Unknown change-impact action: {action}",
|
|
958
|
+
"changeImpact.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
915
959
|
"relatedFiles.help.summary": "Map direct imports, importers, sibling files, and nearby config boundaries for source-oriented repository navigation.",
|
|
916
960
|
"relatedFiles.help.option.maxFiles": "Maximum number of source or related files to scan. Default: 1000",
|
|
917
961
|
"relatedFiles.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
@@ -948,6 +992,41 @@ export const hiMessages = {
|
|
|
948
992
|
"configChain.error.unknownAction": "Unknown config-chain action: {action}",
|
|
949
993
|
"configChain.error.missingPath": "Provide at least one path to inspect",
|
|
950
994
|
"configChain.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
995
|
+
"scriptPack.script.envContract.summary": "Scan repository environment-variable contracts without reading secret values",
|
|
996
|
+
"envContract.help.summary": "Scan code, CI, docs, config, and env examples for environment variable contract drift without printing env values.",
|
|
997
|
+
"envContract.help.option.maxFiles": "Maximum number of files to inspect. Default: 1000",
|
|
998
|
+
"envContract.help.option.maxFileBytes": "Maximum bytes to read from each inspected file. Default: 262144",
|
|
999
|
+
"envContract.help.option.maxKeys": "Maximum number of env keys to report. Default: 300",
|
|
1000
|
+
"envContract.help.exit.ok": "The env contract scan completed without blocking findings",
|
|
1001
|
+
"envContract.help.exit.fail": "The env contract scan found invalid input, unreadable files, or contract findings",
|
|
1002
|
+
"envContract.title": "mustflow env contract",
|
|
1003
|
+
"envContract.label.files": "Files",
|
|
1004
|
+
"envContract.label.keys": "Keys",
|
|
1005
|
+
"envContract.label.findings": "Findings",
|
|
1006
|
+
"envContract.label.truncated": "Truncated",
|
|
1007
|
+
"envContract.label.issues": "Issues",
|
|
1008
|
+
"envContract.clean": "No environment variable references were found.",
|
|
1009
|
+
"envContract.error.missingAction": "Specify an env-contract action: scan",
|
|
1010
|
+
"envContract.error.unknownAction": "Unknown env-contract action: {action}",
|
|
1011
|
+
"envContract.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
1012
|
+
"scriptPack.script.secretRiskScan.summary": "Scan repository files for plausible secrets without printing secret values",
|
|
1013
|
+
"secretRiskScan.help.summary": "Scan code, docs, config, CI, and examples for plausible hardcoded secrets without printing secret values.",
|
|
1014
|
+
"secretRiskScan.help.option.maxFiles": "Maximum number of files to inspect. Default: 1000",
|
|
1015
|
+
"secretRiskScan.help.option.maxFileBytes": "Maximum bytes to read from each inspected file. Default: 262144",
|
|
1016
|
+
"secretRiskScan.help.option.maxFindings": "Maximum number of findings to report. Default: 200",
|
|
1017
|
+
"secretRiskScan.help.exit.ok": "The secret-risk scan completed without blocking findings",
|
|
1018
|
+
"secretRiskScan.help.exit.fail": "The secret-risk scan found invalid input, unreadable files, or secret-risk findings",
|
|
1019
|
+
"secretRiskScan.title": "mustflow secret risk scan",
|
|
1020
|
+
"secretRiskScan.label.files": "Files",
|
|
1021
|
+
"secretRiskScan.label.findings": "Findings",
|
|
1022
|
+
"secretRiskScan.label.highOrCritical": "High or critical",
|
|
1023
|
+
"secretRiskScan.label.skippedSecretFiles": "Skipped secret files",
|
|
1024
|
+
"secretRiskScan.label.truncated": "Truncated",
|
|
1025
|
+
"secretRiskScan.label.issues": "Issues",
|
|
1026
|
+
"secretRiskScan.clean": "No plausible hardcoded secrets were found.",
|
|
1027
|
+
"secretRiskScan.error.missingAction": "Specify a secret-risk-scan action: scan",
|
|
1028
|
+
"secretRiskScan.error.unknownAction": "Unknown secret-risk-scan action: {action}",
|
|
1029
|
+
"secretRiskScan.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
951
1030
|
"run.help.summary": ".mustflow/config/commands.toml से कॉन्फ़िगर की गई एक-बार चलने वाली कमांड चलाएँ।",
|
|
952
1031
|
"run.help.option.dryRun": "कमांड चलाए बिना उसका plan प्रिंट करें",
|
|
953
1032
|
"run.help.option.planOnly": "--dry-run का alias",
|
package/dist/cli/i18n/ko.js
CHANGED
|
@@ -774,6 +774,8 @@ export const koMessages = {
|
|
|
774
774
|
"scriptPack.pack.docs.summary": "Documentation reference utility scripts",
|
|
775
775
|
"scriptPack.pack.repo.summary": "Repository-boundary utility scripts",
|
|
776
776
|
"scriptPack.script.codeOutline.summary": "TypeScript와 JavaScript 파일에서 symbol header와 라인 범위를 스캔합니다",
|
|
777
|
+
"scriptPack.script.codeDependencyGraph.summary": "Trace relative TypeScript and JavaScript dependency graph edges",
|
|
778
|
+
"scriptPack.script.codeChangeImpact.summary": "Analyze changed files for impact, script-pack, and verification hints",
|
|
777
779
|
"scriptPack.script.codeSymbolRead.summary": "source anchor, symbol 라인, 또는 명시 라인 범위로 제한된 소스 snippet을 읽습니다",
|
|
778
780
|
"scriptPack.script.codeRouteOutline.summary": "Hono, Elysia, Axum, NestJS route method, path, handler, lifecycle chain을 스캔합니다",
|
|
779
781
|
"scriptPack.script.codeExportDiff.summary": "git ref 사이의 exported source signature와 return metadata를 비교합니다",
|
|
@@ -912,6 +914,48 @@ export const koMessages = {
|
|
|
912
914
|
"generatedBoundary.error.missingAction": "Specify a generated-boundary action: check",
|
|
913
915
|
"generatedBoundary.error.unknownAction": "Unknown generated-boundary action: {action}",
|
|
914
916
|
"generatedBoundary.error.missingPath": "Provide at least one path to check",
|
|
917
|
+
"dependencyGraph.help.summary": "Trace bounded relative import, export, require, and dynamic import edges for TypeScript and JavaScript source files.",
|
|
918
|
+
"dependencyGraph.help.option.maxDepth": "Maximum dependency depth from target files. Default: 2",
|
|
919
|
+
"dependencyGraph.help.option.maxFiles": "Maximum number of source files to scan. Default: 1000",
|
|
920
|
+
"dependencyGraph.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
921
|
+
"dependencyGraph.help.option.maxNodes": "Maximum number of graph nodes to report. Default: 300",
|
|
922
|
+
"dependencyGraph.help.option.maxEdges": "Maximum number of graph edges to report. Default: 800",
|
|
923
|
+
"dependencyGraph.help.exit.ok": "The dependency graph completed without input or scan-limit findings",
|
|
924
|
+
"dependencyGraph.help.exit.fail": "The dependency graph found invalid input, unreadable paths, or scan limits",
|
|
925
|
+
"dependencyGraph.title": "mustflow dependency graph",
|
|
926
|
+
"dependencyGraph.label.targets": "Targets",
|
|
927
|
+
"dependencyGraph.label.nodes": "Nodes",
|
|
928
|
+
"dependencyGraph.label.edges": "Edges",
|
|
929
|
+
"dependencyGraph.label.cycles": "Cycles",
|
|
930
|
+
"dependencyGraph.label.truncated": "Truncated",
|
|
931
|
+
"dependencyGraph.label.cycleList": "Cycle hints",
|
|
932
|
+
"dependencyGraph.label.findings": "Findings",
|
|
933
|
+
"dependencyGraph.label.issues": "Issues",
|
|
934
|
+
"dependencyGraph.clean": "No relative dependency edges were found.",
|
|
935
|
+
"dependencyGraph.error.missingAction": "Specify a dependency-graph action: scan",
|
|
936
|
+
"dependencyGraph.error.unknownAction": "Unknown dependency-graph action: {action}",
|
|
937
|
+
"dependencyGraph.error.missingPath": "Provide at least one path to scan",
|
|
938
|
+
"dependencyGraph.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
939
|
+
"changeImpact.help.summary": "Analyze git changes and return bounded file-impact, script-pack, and verification hints.",
|
|
940
|
+
"changeImpact.help.option.base": "Git base ref to compare from. Default: HEAD",
|
|
941
|
+
"changeImpact.help.option.head": "Git head ref to compare to. Omit to compare the base with the working tree.",
|
|
942
|
+
"changeImpact.help.option.maxFiles": "Maximum number of changed files to inspect. Default: 200",
|
|
943
|
+
"changeImpact.help.option.maxImpacts": "Maximum number of impact candidates to report. Default: 300",
|
|
944
|
+
"changeImpact.help.option.maxFileBytes": "Maximum bytes to read from each source file while tracing dependencies. Default: 262144",
|
|
945
|
+
"changeImpact.help.exit.ok": "The change-impact analysis completed without input or scan-limit findings",
|
|
946
|
+
"changeImpact.help.exit.fail": "The change-impact analysis found invalid git input or scan limits",
|
|
947
|
+
"changeImpact.title": "mustflow change impact",
|
|
948
|
+
"changeImpact.label.changedFiles": "Changed files",
|
|
949
|
+
"changeImpact.label.impacts": "Impacts",
|
|
950
|
+
"changeImpact.label.truncated": "Truncated",
|
|
951
|
+
"changeImpact.label.scriptHints": "Script hints",
|
|
952
|
+
"changeImpact.label.verificationHints": "Verification hints",
|
|
953
|
+
"changeImpact.label.findings": "Findings",
|
|
954
|
+
"changeImpact.label.issues": "Issues",
|
|
955
|
+
"changeImpact.clean": "No changed files were found for the selected git range.",
|
|
956
|
+
"changeImpact.error.missingAction": "Specify a change-impact action: analyze",
|
|
957
|
+
"changeImpact.error.unknownAction": "Unknown change-impact action: {action}",
|
|
958
|
+
"changeImpact.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
915
959
|
"relatedFiles.help.summary": "Map direct imports, importers, sibling files, and nearby config boundaries for source-oriented repository navigation.",
|
|
916
960
|
"relatedFiles.help.option.maxFiles": "Maximum number of source or related files to scan. Default: 1000",
|
|
917
961
|
"relatedFiles.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
@@ -948,6 +992,41 @@ export const koMessages = {
|
|
|
948
992
|
"configChain.error.unknownAction": "Unknown config-chain action: {action}",
|
|
949
993
|
"configChain.error.missingPath": "Provide at least one path to inspect",
|
|
950
994
|
"configChain.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
995
|
+
"scriptPack.script.envContract.summary": "Scan repository environment-variable contracts without reading secret values",
|
|
996
|
+
"envContract.help.summary": "Scan code, CI, docs, config, and env examples for environment variable contract drift without printing env values.",
|
|
997
|
+
"envContract.help.option.maxFiles": "Maximum number of files to inspect. Default: 1000",
|
|
998
|
+
"envContract.help.option.maxFileBytes": "Maximum bytes to read from each inspected file. Default: 262144",
|
|
999
|
+
"envContract.help.option.maxKeys": "Maximum number of env keys to report. Default: 300",
|
|
1000
|
+
"envContract.help.exit.ok": "The env contract scan completed without blocking findings",
|
|
1001
|
+
"envContract.help.exit.fail": "The env contract scan found invalid input, unreadable files, or contract findings",
|
|
1002
|
+
"envContract.title": "mustflow env contract",
|
|
1003
|
+
"envContract.label.files": "Files",
|
|
1004
|
+
"envContract.label.keys": "Keys",
|
|
1005
|
+
"envContract.label.findings": "Findings",
|
|
1006
|
+
"envContract.label.truncated": "Truncated",
|
|
1007
|
+
"envContract.label.issues": "Issues",
|
|
1008
|
+
"envContract.clean": "No environment variable references were found.",
|
|
1009
|
+
"envContract.error.missingAction": "Specify an env-contract action: scan",
|
|
1010
|
+
"envContract.error.unknownAction": "Unknown env-contract action: {action}",
|
|
1011
|
+
"envContract.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
1012
|
+
"scriptPack.script.secretRiskScan.summary": "Scan repository files for plausible secrets without printing secret values",
|
|
1013
|
+
"secretRiskScan.help.summary": "Scan code, docs, config, CI, and examples for plausible hardcoded secrets without printing secret values.",
|
|
1014
|
+
"secretRiskScan.help.option.maxFiles": "Maximum number of files to inspect. Default: 1000",
|
|
1015
|
+
"secretRiskScan.help.option.maxFileBytes": "Maximum bytes to read from each inspected file. Default: 262144",
|
|
1016
|
+
"secretRiskScan.help.option.maxFindings": "Maximum number of findings to report. Default: 200",
|
|
1017
|
+
"secretRiskScan.help.exit.ok": "The secret-risk scan completed without blocking findings",
|
|
1018
|
+
"secretRiskScan.help.exit.fail": "The secret-risk scan found invalid input, unreadable files, or secret-risk findings",
|
|
1019
|
+
"secretRiskScan.title": "mustflow secret risk scan",
|
|
1020
|
+
"secretRiskScan.label.files": "Files",
|
|
1021
|
+
"secretRiskScan.label.findings": "Findings",
|
|
1022
|
+
"secretRiskScan.label.highOrCritical": "High or critical",
|
|
1023
|
+
"secretRiskScan.label.skippedSecretFiles": "Skipped secret files",
|
|
1024
|
+
"secretRiskScan.label.truncated": "Truncated",
|
|
1025
|
+
"secretRiskScan.label.issues": "Issues",
|
|
1026
|
+
"secretRiskScan.clean": "No plausible hardcoded secrets were found.",
|
|
1027
|
+
"secretRiskScan.error.missingAction": "Specify a secret-risk-scan action: scan",
|
|
1028
|
+
"secretRiskScan.error.unknownAction": "Unknown secret-risk-scan action: {action}",
|
|
1029
|
+
"secretRiskScan.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
951
1030
|
"run.help.summary": ".mustflow/config/commands.toml에 설정된 일회성 명령을 실행합니다.",
|
|
952
1031
|
"run.help.option.dryRun": "실행하지 않고 명령 계획을 출력합니다",
|
|
953
1032
|
"run.help.option.planOnly": "--dry-run과 같은 동작입니다",
|