mustflow 2.75.1 → 2.84.0
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 +31 -3
- package/dist/cli/commands/docs.js +86 -2
- package/dist/cli/commands/script-pack.js +5 -0
- package/dist/cli/i18n/en.js +101 -2
- package/dist/cli/i18n/es.js +101 -2
- package/dist/cli/i18n/fr.js +101 -2
- package/dist/cli/i18n/hi.js +101 -2
- package/dist/cli/i18n/ko.js +101 -2
- package/dist/cli/i18n/zh.js +101 -2
- package/dist/cli/lib/script-pack-registry.js +162 -7
- package/dist/cli/script-packs/code-export-diff.js +160 -0
- package/dist/cli/script-packs/code-outline.js +33 -5
- package/dist/cli/script-packs/code-route-outline.js +155 -0
- package/dist/cli/script-packs/docs-reference-drift.js +150 -0
- package/dist/cli/script-packs/repo-config-chain.js +163 -0
- package/dist/cli/script-packs/repo-related-files.js +161 -0
- package/dist/core/code-outline.js +527 -80
- package/dist/core/config-chain.js +595 -0
- package/dist/core/export-diff.js +359 -0
- package/dist/core/public-json-contracts.js +75 -0
- package/dist/core/reference-drift.js +388 -0
- package/dist/core/related-files.js +493 -0
- package/dist/core/route-outline.js +912 -0
- package/dist/core/script-pack-suggestions.js +111 -5
- package/dist/core/source-anchors.js +13 -1
- package/package.json +1 -1
- package/schemas/README.md +28 -5
- package/schemas/code-outline-report.schema.json +47 -1
- package/schemas/code-symbol-read-report.schema.json +64 -4
- package/schemas/config-chain-report.schema.json +187 -0
- package/schemas/export-diff-report.schema.json +220 -0
- package/schemas/reference-drift-report.schema.json +166 -0
- package/schemas/related-files-report.schema.json +145 -0
- package/schemas/route-outline-report.schema.json +200 -0
- package/templates/default/common/.mustflow/config/commands.toml +21 -0
- package/templates/default/i18n.toml +7 -1
- package/templates/default/locales/en/.mustflow/docs/agent-workflow.md +1 -1
- package/templates/default/locales/en/.mustflow/skills/INDEX.md +2 -1
- package/templates/default/locales/en/.mustflow/skills/cross-agent-session-reference/SKILL.md +131 -0
- package/templates/default/locales/en/.mustflow/skills/routes.toml +6 -0
- package/templates/default/manifest.toml +8 -1
package/dist/cli/i18n/fr.js
CHANGED
|
@@ -585,6 +585,7 @@ export const frMessages = {
|
|
|
585
585
|
"docs.help.summary": "Suit les documents qui nécessitent une révision de prose après création ou modification par LLM.",
|
|
586
586
|
"docs.help.option.all": "Inclut les documents approuvés et ignorés",
|
|
587
587
|
"docs.help.option.status": "Filtre par statut de révision",
|
|
588
|
+
"docs.help.option.changed": "Ajoute tous les documents modifiés candidats à la revue depuis git status",
|
|
588
589
|
"docs.help.option.reason": "Enregistre pourquoi le document nécessite une révision",
|
|
589
590
|
"docs.help.option.origin": "Enregistre l'origine du besoin, par exemple llm_modified",
|
|
590
591
|
"docs.help.option.actorKind": "Enregistre qui a changé le document: human, llm, tool ou external",
|
|
@@ -600,6 +601,8 @@ export const frMessages = {
|
|
|
600
601
|
"docs.review.empty": "Aucun document ne nécessite de révision.",
|
|
601
602
|
"docs.review.wrote": "Écrit",
|
|
602
603
|
"docs.review.added": "Ajouté",
|
|
604
|
+
"docs.review.changed.none": "Aucun document modifié ne nécessite de revue.",
|
|
605
|
+
"docs.review.changed.added": "Documents modifiés ajoutés : {count}",
|
|
603
606
|
"docs.review.commented": "Commenté",
|
|
604
607
|
"docs.review.marked.approved": "Approuvé",
|
|
605
608
|
"docs.review.marked.needs_human": "Marqué needs_human",
|
|
@@ -612,6 +615,9 @@ export const frMessages = {
|
|
|
612
615
|
"docs.error.emptyComment": "Le commentaire de revue ne peut pas être vide",
|
|
613
616
|
"docs.error.commentSourceConflict": "Utilisez --comment ou --comment-file, pas les deux",
|
|
614
617
|
"docs.error.commentFileIsDocument": "--comment-file ne doit pas pointer vers le document en cours de revue",
|
|
618
|
+
"docs.error.changedPathConflict": "Utilisez --changed sans chemin de document",
|
|
619
|
+
"docs.error.changedCommentConflict": "Utilisez --changed sans --comment ni --comment-file",
|
|
620
|
+
"docs.error.changedFilesUnavailable": "Impossible d'inspecter les fichiers modifiés avec git status : {message}",
|
|
615
621
|
"docs.error.invalidStatus": "Statut de révision invalide. Utilise un de: {statuses}",
|
|
616
622
|
"docs.error.invalidReviewerKind": "Type de réviseur invalide. Utilise un de: {kinds}",
|
|
617
623
|
"docs.error.missingReviewerKind": "--reviewer-kind manquant. Utilise un de: {kinds}",
|
|
@@ -765,11 +771,17 @@ Lisez ces fichiers avant de travailler :
|
|
|
765
771
|
"scriptPack.suggest.empty": "No script-pack suggestions matched the supplied paths, skills, or phases.",
|
|
766
772
|
"scriptPack.pack.code.summary": "Source-code orientation utility scripts",
|
|
767
773
|
"scriptPack.pack.core.summary": "Core built-in utility scripts",
|
|
774
|
+
"scriptPack.pack.docs.summary": "Documentation reference utility scripts",
|
|
768
775
|
"scriptPack.pack.repo.summary": "Repository-boundary utility scripts",
|
|
769
776
|
"scriptPack.script.codeOutline.summary": "Scan TypeScript and JavaScript files for symbol headers and line ranges",
|
|
770
|
-
"scriptPack.script.codeSymbolRead.summary": "Read a bounded source snippet by symbol line or explicit line range",
|
|
777
|
+
"scriptPack.script.codeSymbolRead.summary": "Read a bounded source snippet by source anchor, symbol line, or explicit line range",
|
|
778
|
+
"scriptPack.script.codeRouteOutline.summary": "Scan Hono, Elysia, Axum, and NestJS route methods, paths, handlers, and lifecycle chains",
|
|
779
|
+
"scriptPack.script.codeExportDiff.summary": "Compare exported source signatures and return metadata across git refs",
|
|
771
780
|
"scriptPack.script.textBudget.summary": "Check exact text length budgets for files or JSON string fields",
|
|
781
|
+
"scriptPack.script.referenceDrift.summary": "Check documented command, script-pack, schema, and path references for drift",
|
|
782
|
+
"scriptPack.script.configChain.summary": "Inspect nearby config files and static config inheritance",
|
|
772
783
|
"scriptPack.script.generatedBoundary.summary": "Check whether candidate paths cross generated, ignored, protected, vendor, or cache boundaries",
|
|
784
|
+
"scriptPack.script.relatedFiles.summary": "Map likely related files for source-oriented repository navigation",
|
|
773
785
|
"scriptPack.label.script": "Script",
|
|
774
786
|
"scriptPack.label.actions": "actions",
|
|
775
787
|
"scriptPack.label.schema": "schema",
|
|
@@ -796,7 +808,8 @@ Lisez ces fichiers avant de travailler :
|
|
|
796
808
|
"codeOutline.error.missingPath": "Provide at least one source file or directory to scan",
|
|
797
809
|
"codeOutline.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
798
810
|
"codeOutline.error.invalidNonNegativeInteger": "{option} must be a non-negative safe integer: {value}",
|
|
799
|
-
"codeSymbolRead.help.summary": "Read a bounded TypeScript or JavaScript source snippet from a symbol line or explicit line range.",
|
|
811
|
+
"codeSymbolRead.help.summary": "Read a bounded TypeScript or JavaScript source snippet from a source anchor, symbol line, or explicit line range.",
|
|
812
|
+
"codeSymbolRead.help.option.anchor": "Source anchor id to resolve to its target symbol",
|
|
800
813
|
"codeSymbolRead.help.option.startLine": "1-based source line to resolve to a symbol or range",
|
|
801
814
|
"codeSymbolRead.help.option.endLine": "Optional explicit 1-based end line; when omitted, the containing outline symbol is read",
|
|
802
815
|
"codeSymbolRead.help.option.contextLines": "Number of surrounding context lines to include. Default: 0",
|
|
@@ -813,6 +826,56 @@ Lisez ces fichiers avant de travailler :
|
|
|
813
826
|
"codeSymbolRead.error.missingPath": "Provide exactly one source file to read",
|
|
814
827
|
"codeSymbolRead.error.tooManyPaths": "Provide only one source file to read",
|
|
815
828
|
"codeSymbolRead.error.missingStartLine": "Provide --start-line <line>",
|
|
829
|
+
"codeSymbolRead.error.anchorConflict": "Use either --anchor <id> or <path> with --start-line/--end-line, not both",
|
|
830
|
+
"codeRouteOutline.help.summary": "Scan Hono, Elysia, Axum, and NestJS route source files for method, path, handler, lifecycle, and line metadata.",
|
|
831
|
+
"codeRouteOutline.help.option.maxFiles": "Maximum number of source files to scan. Default: 200",
|
|
832
|
+
"codeRouteOutline.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 1048576",
|
|
833
|
+
"codeRouteOutline.help.exit.ok": "The route outline was scanned without findings",
|
|
834
|
+
"codeRouteOutline.help.exit.fail": "The route outline found invalid input, unreadable files, unsupported files, or scan limits",
|
|
835
|
+
"codeRouteOutline.title": "mustflow route outline",
|
|
836
|
+
"codeRouteOutline.label.files": "Files",
|
|
837
|
+
"codeRouteOutline.label.routes": "Routes",
|
|
838
|
+
"codeRouteOutline.label.findings": "Findings",
|
|
839
|
+
"codeRouteOutline.label.outline": "Route outline",
|
|
840
|
+
"codeRouteOutline.label.issues": "Issues",
|
|
841
|
+
"codeRouteOutline.clean": "No Hono, Elysia, Axum, or NestJS routes were found.",
|
|
842
|
+
"codeRouteOutline.error.missingAction": "Specify a route-outline action: scan",
|
|
843
|
+
"codeRouteOutline.error.unknownAction": "Unknown route-outline action: {action}",
|
|
844
|
+
"codeRouteOutline.error.missingPath": "Provide at least one source file or directory to scan",
|
|
845
|
+
"codeRouteOutline.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
846
|
+
"exportDiff.help.summary": "Compare exported TS/JS signatures, return metadata, and package surface hints across a git base and head.",
|
|
847
|
+
"exportDiff.help.option.base": "Git base ref to compare from. Default: HEAD",
|
|
848
|
+
"exportDiff.help.option.head": "Git head ref to compare to. Omit to compare the base with the working tree.",
|
|
849
|
+
"exportDiff.help.option.maxFiles": "Maximum number of changed source files to inspect. Default: 100",
|
|
850
|
+
"exportDiff.help.option.maxFileBytes": "Maximum bytes to read from each source file snapshot. Default: 1048576",
|
|
851
|
+
"exportDiff.help.exit.ok": "The export diff completed without input errors",
|
|
852
|
+
"exportDiff.help.exit.fail": "The export diff could not read git input or exceeded configured limits",
|
|
853
|
+
"exportDiff.title": "mustflow export diff",
|
|
854
|
+
"exportDiff.label.files": "Files",
|
|
855
|
+
"exportDiff.label.added": "Added",
|
|
856
|
+
"exportDiff.label.removed": "Removed",
|
|
857
|
+
"exportDiff.label.changed": "Changed",
|
|
858
|
+
"exportDiff.label.exports": "Exports",
|
|
859
|
+
"exportDiff.label.findings": "Findings",
|
|
860
|
+
"exportDiff.label.issues": "Issues",
|
|
861
|
+
"exportDiff.clean": "No exported TypeScript or JavaScript declaration changes were found.",
|
|
862
|
+
"exportDiff.error.missingAction": "Specify an export-diff action: compare",
|
|
863
|
+
"exportDiff.error.unknownAction": "Unknown export-diff action: {action}",
|
|
864
|
+
"exportDiff.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
865
|
+
"referenceDrift.help.summary": "Check documentation references against current mf commands, script-pack refs, schema files, and repository paths.",
|
|
866
|
+
"referenceDrift.help.option.maxFiles": "Maximum number of document files to inspect. Default: 200",
|
|
867
|
+
"referenceDrift.help.option.maxFileBytes": "Maximum bytes to read from each document file. Default: 524288",
|
|
868
|
+
"referenceDrift.help.exit.ok": "All checked documentation references resolved against current repository surfaces",
|
|
869
|
+
"referenceDrift.help.exit.fail": "A documentation reference was stale, missing, unknown, unreadable, or over a configured limit",
|
|
870
|
+
"referenceDrift.title": "mustflow reference drift",
|
|
871
|
+
"referenceDrift.label.files": "Files",
|
|
872
|
+
"referenceDrift.label.references": "References",
|
|
873
|
+
"referenceDrift.label.findings": "Findings",
|
|
874
|
+
"referenceDrift.label.issues": "Issues",
|
|
875
|
+
"referenceDrift.clean": "No documentation references were found.",
|
|
876
|
+
"referenceDrift.error.missingAction": "Specify a reference-drift action: check",
|
|
877
|
+
"referenceDrift.error.unknownAction": "Unknown reference-drift action: {action}",
|
|
878
|
+
"referenceDrift.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
816
879
|
"textBudget.help.summary": "Check exact text length budgets for files or JSON string fields using grapheme counts by default.",
|
|
817
880
|
"textBudget.help.option.min": "Require at least this many units",
|
|
818
881
|
"textBudget.help.option.max": "Require at most this many units",
|
|
@@ -849,6 +912,42 @@ Lisez ces fichiers avant de travailler :
|
|
|
849
912
|
"generatedBoundary.error.missingAction": "Specify a generated-boundary action: check",
|
|
850
913
|
"generatedBoundary.error.unknownAction": "Unknown generated-boundary action: {action}",
|
|
851
914
|
"generatedBoundary.error.missingPath": "Provide at least one path to check",
|
|
915
|
+
"relatedFiles.help.summary": "Map direct imports, importers, sibling files, and nearby config boundaries for source-oriented repository navigation.",
|
|
916
|
+
"relatedFiles.help.option.maxFiles": "Maximum number of source or related files to scan. Default: 1000",
|
|
917
|
+
"relatedFiles.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
918
|
+
"relatedFiles.help.option.maxCandidates": "Maximum number of related-file candidates to report. Default: 200",
|
|
919
|
+
"relatedFiles.help.exit.ok": "The related-file map completed without input or scan-limit findings",
|
|
920
|
+
"relatedFiles.help.exit.fail": "The related-file map found invalid input, unreadable paths, or scan limits",
|
|
921
|
+
"relatedFiles.title": "mustflow related files",
|
|
922
|
+
"relatedFiles.label.targets": "Targets",
|
|
923
|
+
"relatedFiles.label.candidates": "Candidates",
|
|
924
|
+
"relatedFiles.label.truncated": "Truncated",
|
|
925
|
+
"relatedFiles.label.related": "Related files",
|
|
926
|
+
"relatedFiles.label.confidence": "confidence",
|
|
927
|
+
"relatedFiles.label.findings": "Findings",
|
|
928
|
+
"relatedFiles.label.issues": "Issues",
|
|
929
|
+
"relatedFiles.clean": "No related-file candidates were found.",
|
|
930
|
+
"relatedFiles.error.missingAction": "Specify a related-files action: map",
|
|
931
|
+
"relatedFiles.error.unknownAction": "Unknown related-files action: {action}",
|
|
932
|
+
"relatedFiles.error.missingPath": "Provide at least one path to map",
|
|
933
|
+
"relatedFiles.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
934
|
+
"configChain.help.summary": "Inspect nearby config files, static inheritance, workspace hints, and dynamic config boundaries.",
|
|
935
|
+
"configChain.help.option.maxConfigs": "Maximum number of config files to inspect. Default: 120",
|
|
936
|
+
"configChain.help.option.maxFileBytes": "Maximum bytes to read from each config file. Default: 262144",
|
|
937
|
+
"configChain.help.exit.ok": "The config chain was inspected without blocking findings",
|
|
938
|
+
"configChain.help.exit.fail": "The config chain found invalid input, unreadable files, parse errors, or scan limits",
|
|
939
|
+
"configChain.title": "mustflow config chain",
|
|
940
|
+
"configChain.label.targets": "Targets",
|
|
941
|
+
"configChain.label.configs": "Configs",
|
|
942
|
+
"configChain.label.edges": "Edges",
|
|
943
|
+
"configChain.label.findings": "Findings",
|
|
944
|
+
"configChain.label.dynamic": "dynamic",
|
|
945
|
+
"configChain.label.issues": "Issues",
|
|
946
|
+
"configChain.clean": "No nearby config files were found.",
|
|
947
|
+
"configChain.error.missingAction": "Specify a config-chain action: inspect",
|
|
948
|
+
"configChain.error.unknownAction": "Unknown config-chain action: {action}",
|
|
949
|
+
"configChain.error.missingPath": "Provide at least one path to inspect",
|
|
950
|
+
"configChain.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
852
951
|
"run.help.summary": "Exécute une commande configurée à exécution unique depuis .mustflow/config/commands.toml.",
|
|
853
952
|
"run.help.option.dryRun": "Imprime un plan de commande sans l'exécuter",
|
|
854
953
|
"run.help.option.planOnly": "Alias de --dry-run",
|
package/dist/cli/i18n/hi.js
CHANGED
|
@@ -585,6 +585,7 @@ export const hiMessages = {
|
|
|
585
585
|
"docs.help.summary": "LLM creation या modification के बाद prose review की जरूरत वाले documents track करें.",
|
|
586
586
|
"docs.help.option.all": "स्वीकृत और अनदेखे documents भी शामिल करें",
|
|
587
587
|
"docs.help.option.status": "Review status से filter करें",
|
|
588
|
+
"docs.help.option.changed": "git status से सभी changed documentation review candidates जोड़ें",
|
|
588
589
|
"docs.help.option.reason": "Document को review क्यों चाहिए यह record करें",
|
|
589
590
|
"docs.help.option.origin": "Review need का source record करें, जैसे llm_modified",
|
|
590
591
|
"docs.help.option.actorKind": "Document किसने बदला record करें: human, llm, tool, या external",
|
|
@@ -600,6 +601,8 @@ export const hiMessages = {
|
|
|
600
601
|
"docs.review.empty": "Review की जरूरत वाले documents नहीं हैं.",
|
|
601
602
|
"docs.review.wrote": "लिखा",
|
|
602
603
|
"docs.review.added": "जोड़ा",
|
|
604
|
+
"docs.review.changed.none": "Review की जरूरत वाले changed documents नहीं हैं.",
|
|
605
|
+
"docs.review.changed.added": "Changed documents जोड़े: {count}",
|
|
603
606
|
"docs.review.commented": "टिप्पणी जोड़ी गई",
|
|
604
607
|
"docs.review.marked.approved": "स्वीकृत",
|
|
605
608
|
"docs.review.marked.needs_human": "needs_human mark किया",
|
|
@@ -612,6 +615,9 @@ export const hiMessages = {
|
|
|
612
615
|
"docs.error.emptyComment": "Review comment खाली नहीं हो सकता",
|
|
613
616
|
"docs.error.commentSourceConflict": "--comment या --comment-file में से केवल एक use करें",
|
|
614
617
|
"docs.error.commentFileIsDocument": "--comment-file review किए जा रहे document की ओर point नहीं कर सकता",
|
|
618
|
+
"docs.error.changedPathConflict": "--changed को document path के बिना use करें",
|
|
619
|
+
"docs.error.changedCommentConflict": "--changed को --comment या --comment-file के बिना use करें",
|
|
620
|
+
"docs.error.changedFilesUnavailable": "git status से changed files inspect नहीं हो सकीं: {message}",
|
|
615
621
|
"docs.error.invalidStatus": "Invalid review status. इनमें से एक use करें: {statuses}",
|
|
616
622
|
"docs.error.invalidReviewerKind": "Invalid reviewer kind. इनमें से एक use करें: {kinds}",
|
|
617
623
|
"docs.error.missingReviewerKind": "--reviewer-kind missing है. इनमें से एक use करें: {kinds}",
|
|
@@ -765,11 +771,17 @@ export const hiMessages = {
|
|
|
765
771
|
"scriptPack.suggest.empty": "No script-pack suggestions matched the supplied paths, skills, or phases.",
|
|
766
772
|
"scriptPack.pack.code.summary": "Source-code orientation utility scripts",
|
|
767
773
|
"scriptPack.pack.core.summary": "Core built-in utility scripts",
|
|
774
|
+
"scriptPack.pack.docs.summary": "Documentation reference utility scripts",
|
|
768
775
|
"scriptPack.pack.repo.summary": "Repository-boundary utility scripts",
|
|
769
776
|
"scriptPack.script.codeOutline.summary": "Scan TypeScript and JavaScript files for symbol headers and line ranges",
|
|
770
|
-
"scriptPack.script.codeSymbolRead.summary": "Read a bounded source snippet by symbol line or explicit line range",
|
|
777
|
+
"scriptPack.script.codeSymbolRead.summary": "Read a bounded source snippet by source anchor, symbol line, or explicit line range",
|
|
778
|
+
"scriptPack.script.codeRouteOutline.summary": "Scan Hono, Elysia, Axum, and NestJS route methods, paths, handlers, and lifecycle chains",
|
|
779
|
+
"scriptPack.script.codeExportDiff.summary": "Compare exported source signatures and return metadata across git refs",
|
|
771
780
|
"scriptPack.script.textBudget.summary": "Check exact text length budgets for files or JSON string fields",
|
|
781
|
+
"scriptPack.script.referenceDrift.summary": "Check documented command, script-pack, schema, and path references for drift",
|
|
782
|
+
"scriptPack.script.configChain.summary": "Inspect nearby config files and static config inheritance",
|
|
772
783
|
"scriptPack.script.generatedBoundary.summary": "Check whether candidate paths cross generated, ignored, protected, vendor, or cache boundaries",
|
|
784
|
+
"scriptPack.script.relatedFiles.summary": "Map likely related files for source-oriented repository navigation",
|
|
773
785
|
"scriptPack.label.script": "Script",
|
|
774
786
|
"scriptPack.label.actions": "actions",
|
|
775
787
|
"scriptPack.label.schema": "schema",
|
|
@@ -796,7 +808,8 @@ export const hiMessages = {
|
|
|
796
808
|
"codeOutline.error.missingPath": "Provide at least one source file or directory to scan",
|
|
797
809
|
"codeOutline.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
798
810
|
"codeOutline.error.invalidNonNegativeInteger": "{option} must be a non-negative safe integer: {value}",
|
|
799
|
-
"codeSymbolRead.help.summary": "Read a bounded TypeScript or JavaScript source snippet from a symbol line or explicit line range.",
|
|
811
|
+
"codeSymbolRead.help.summary": "Read a bounded TypeScript or JavaScript source snippet from a source anchor, symbol line, or explicit line range.",
|
|
812
|
+
"codeSymbolRead.help.option.anchor": "Source anchor id to resolve to its target symbol",
|
|
800
813
|
"codeSymbolRead.help.option.startLine": "1-based source line to resolve to a symbol or range",
|
|
801
814
|
"codeSymbolRead.help.option.endLine": "Optional explicit 1-based end line; when omitted, the containing outline symbol is read",
|
|
802
815
|
"codeSymbolRead.help.option.contextLines": "Number of surrounding context lines to include. Default: 0",
|
|
@@ -813,6 +826,56 @@ export const hiMessages = {
|
|
|
813
826
|
"codeSymbolRead.error.missingPath": "Provide exactly one source file to read",
|
|
814
827
|
"codeSymbolRead.error.tooManyPaths": "Provide only one source file to read",
|
|
815
828
|
"codeSymbolRead.error.missingStartLine": "Provide --start-line <line>",
|
|
829
|
+
"codeSymbolRead.error.anchorConflict": "Use either --anchor <id> or <path> with --start-line/--end-line, not both",
|
|
830
|
+
"codeRouteOutline.help.summary": "Scan Hono, Elysia, Axum, and NestJS route source files for method, path, handler, lifecycle, and line metadata.",
|
|
831
|
+
"codeRouteOutline.help.option.maxFiles": "Maximum number of source files to scan. Default: 200",
|
|
832
|
+
"codeRouteOutline.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 1048576",
|
|
833
|
+
"codeRouteOutline.help.exit.ok": "The route outline was scanned without findings",
|
|
834
|
+
"codeRouteOutline.help.exit.fail": "The route outline found invalid input, unreadable files, unsupported files, or scan limits",
|
|
835
|
+
"codeRouteOutline.title": "mustflow route outline",
|
|
836
|
+
"codeRouteOutline.label.files": "Files",
|
|
837
|
+
"codeRouteOutline.label.routes": "Routes",
|
|
838
|
+
"codeRouteOutline.label.findings": "Findings",
|
|
839
|
+
"codeRouteOutline.label.outline": "Route outline",
|
|
840
|
+
"codeRouteOutline.label.issues": "Issues",
|
|
841
|
+
"codeRouteOutline.clean": "No Hono, Elysia, Axum, or NestJS routes were found.",
|
|
842
|
+
"codeRouteOutline.error.missingAction": "Specify a route-outline action: scan",
|
|
843
|
+
"codeRouteOutline.error.unknownAction": "Unknown route-outline action: {action}",
|
|
844
|
+
"codeRouteOutline.error.missingPath": "Provide at least one source file or directory to scan",
|
|
845
|
+
"codeRouteOutline.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
846
|
+
"exportDiff.help.summary": "Compare exported TS/JS signatures, return metadata, and package surface hints across a git base and head.",
|
|
847
|
+
"exportDiff.help.option.base": "Git base ref to compare from. Default: HEAD",
|
|
848
|
+
"exportDiff.help.option.head": "Git head ref to compare to. Omit to compare the base with the working tree.",
|
|
849
|
+
"exportDiff.help.option.maxFiles": "Maximum number of changed source files to inspect. Default: 100",
|
|
850
|
+
"exportDiff.help.option.maxFileBytes": "Maximum bytes to read from each source file snapshot. Default: 1048576",
|
|
851
|
+
"exportDiff.help.exit.ok": "The export diff completed without input errors",
|
|
852
|
+
"exportDiff.help.exit.fail": "The export diff could not read git input or exceeded configured limits",
|
|
853
|
+
"exportDiff.title": "mustflow export diff",
|
|
854
|
+
"exportDiff.label.files": "Files",
|
|
855
|
+
"exportDiff.label.added": "Added",
|
|
856
|
+
"exportDiff.label.removed": "Removed",
|
|
857
|
+
"exportDiff.label.changed": "Changed",
|
|
858
|
+
"exportDiff.label.exports": "Exports",
|
|
859
|
+
"exportDiff.label.findings": "Findings",
|
|
860
|
+
"exportDiff.label.issues": "Issues",
|
|
861
|
+
"exportDiff.clean": "No exported TypeScript or JavaScript declaration changes were found.",
|
|
862
|
+
"exportDiff.error.missingAction": "Specify an export-diff action: compare",
|
|
863
|
+
"exportDiff.error.unknownAction": "Unknown export-diff action: {action}",
|
|
864
|
+
"exportDiff.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
865
|
+
"referenceDrift.help.summary": "Check documentation references against current mf commands, script-pack refs, schema files, and repository paths.",
|
|
866
|
+
"referenceDrift.help.option.maxFiles": "Maximum number of document files to inspect. Default: 200",
|
|
867
|
+
"referenceDrift.help.option.maxFileBytes": "Maximum bytes to read from each document file. Default: 524288",
|
|
868
|
+
"referenceDrift.help.exit.ok": "All checked documentation references resolved against current repository surfaces",
|
|
869
|
+
"referenceDrift.help.exit.fail": "A documentation reference was stale, missing, unknown, unreadable, or over a configured limit",
|
|
870
|
+
"referenceDrift.title": "mustflow reference drift",
|
|
871
|
+
"referenceDrift.label.files": "Files",
|
|
872
|
+
"referenceDrift.label.references": "References",
|
|
873
|
+
"referenceDrift.label.findings": "Findings",
|
|
874
|
+
"referenceDrift.label.issues": "Issues",
|
|
875
|
+
"referenceDrift.clean": "No documentation references were found.",
|
|
876
|
+
"referenceDrift.error.missingAction": "Specify a reference-drift action: check",
|
|
877
|
+
"referenceDrift.error.unknownAction": "Unknown reference-drift action: {action}",
|
|
878
|
+
"referenceDrift.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
816
879
|
"textBudget.help.summary": "Check exact text length budgets for files or JSON string fields using grapheme counts by default.",
|
|
817
880
|
"textBudget.help.option.min": "Require at least this many units",
|
|
818
881
|
"textBudget.help.option.max": "Require at most this many units",
|
|
@@ -849,6 +912,42 @@ export const hiMessages = {
|
|
|
849
912
|
"generatedBoundary.error.missingAction": "Specify a generated-boundary action: check",
|
|
850
913
|
"generatedBoundary.error.unknownAction": "Unknown generated-boundary action: {action}",
|
|
851
914
|
"generatedBoundary.error.missingPath": "Provide at least one path to check",
|
|
915
|
+
"relatedFiles.help.summary": "Map direct imports, importers, sibling files, and nearby config boundaries for source-oriented repository navigation.",
|
|
916
|
+
"relatedFiles.help.option.maxFiles": "Maximum number of source or related files to scan. Default: 1000",
|
|
917
|
+
"relatedFiles.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
918
|
+
"relatedFiles.help.option.maxCandidates": "Maximum number of related-file candidates to report. Default: 200",
|
|
919
|
+
"relatedFiles.help.exit.ok": "The related-file map completed without input or scan-limit findings",
|
|
920
|
+
"relatedFiles.help.exit.fail": "The related-file map found invalid input, unreadable paths, or scan limits",
|
|
921
|
+
"relatedFiles.title": "mustflow related files",
|
|
922
|
+
"relatedFiles.label.targets": "Targets",
|
|
923
|
+
"relatedFiles.label.candidates": "Candidates",
|
|
924
|
+
"relatedFiles.label.truncated": "Truncated",
|
|
925
|
+
"relatedFiles.label.related": "Related files",
|
|
926
|
+
"relatedFiles.label.confidence": "confidence",
|
|
927
|
+
"relatedFiles.label.findings": "Findings",
|
|
928
|
+
"relatedFiles.label.issues": "Issues",
|
|
929
|
+
"relatedFiles.clean": "No related-file candidates were found.",
|
|
930
|
+
"relatedFiles.error.missingAction": "Specify a related-files action: map",
|
|
931
|
+
"relatedFiles.error.unknownAction": "Unknown related-files action: {action}",
|
|
932
|
+
"relatedFiles.error.missingPath": "Provide at least one path to map",
|
|
933
|
+
"relatedFiles.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
934
|
+
"configChain.help.summary": "Inspect nearby config files, static inheritance, workspace hints, and dynamic config boundaries.",
|
|
935
|
+
"configChain.help.option.maxConfigs": "Maximum number of config files to inspect. Default: 120",
|
|
936
|
+
"configChain.help.option.maxFileBytes": "Maximum bytes to read from each config file. Default: 262144",
|
|
937
|
+
"configChain.help.exit.ok": "The config chain was inspected without blocking findings",
|
|
938
|
+
"configChain.help.exit.fail": "The config chain found invalid input, unreadable files, parse errors, or scan limits",
|
|
939
|
+
"configChain.title": "mustflow config chain",
|
|
940
|
+
"configChain.label.targets": "Targets",
|
|
941
|
+
"configChain.label.configs": "Configs",
|
|
942
|
+
"configChain.label.edges": "Edges",
|
|
943
|
+
"configChain.label.findings": "Findings",
|
|
944
|
+
"configChain.label.dynamic": "dynamic",
|
|
945
|
+
"configChain.label.issues": "Issues",
|
|
946
|
+
"configChain.clean": "No nearby config files were found.",
|
|
947
|
+
"configChain.error.missingAction": "Specify a config-chain action: inspect",
|
|
948
|
+
"configChain.error.unknownAction": "Unknown config-chain action: {action}",
|
|
949
|
+
"configChain.error.missingPath": "Provide at least one path to inspect",
|
|
950
|
+
"configChain.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
852
951
|
"run.help.summary": ".mustflow/config/commands.toml से कॉन्फ़िगर की गई एक-बार चलने वाली कमांड चलाएँ।",
|
|
853
952
|
"run.help.option.dryRun": "कमांड चलाए बिना उसका plan प्रिंट करें",
|
|
854
953
|
"run.help.option.planOnly": "--dry-run का alias",
|
package/dist/cli/i18n/ko.js
CHANGED
|
@@ -585,6 +585,7 @@ export const koMessages = {
|
|
|
585
585
|
"docs.help.summary": "LLM이 생성하거나 수정한 뒤 문장 검수가 필요한 문서를 추적합니다.",
|
|
586
586
|
"docs.help.option.all": "승인 또는 무시된 문서도 포함합니다",
|
|
587
587
|
"docs.help.option.status": "검수 상태로 필터링합니다",
|
|
588
|
+
"docs.help.option.changed": "git status에서 현재 바뀐 문서 검수 후보를 모두 추가합니다",
|
|
588
589
|
"docs.help.option.reason": "문서 검수가 필요한 이유를 기록합니다",
|
|
589
590
|
"docs.help.option.origin": "llm_modified 같은 검수 필요 출처를 기록합니다",
|
|
590
591
|
"docs.help.option.actorKind": "문서를 바꾼 주체를 기록합니다: human, llm, tool, external",
|
|
@@ -600,6 +601,8 @@ export const koMessages = {
|
|
|
600
601
|
"docs.review.empty": "검수가 필요한 문서가 없습니다.",
|
|
601
602
|
"docs.review.wrote": "작성",
|
|
602
603
|
"docs.review.added": "추가",
|
|
604
|
+
"docs.review.changed.none": "검수가 필요한 변경 문서가 없습니다.",
|
|
605
|
+
"docs.review.changed.added": "변경 문서 추가: {count}",
|
|
603
606
|
"docs.review.commented": "코멘트 추가",
|
|
604
607
|
"docs.review.marked.approved": "승인",
|
|
605
608
|
"docs.review.marked.needs_human": "인간 검수 필요로 표시",
|
|
@@ -612,6 +615,9 @@ export const koMessages = {
|
|
|
612
615
|
"docs.error.emptyComment": "검수 코멘트는 비워 둘 수 없습니다",
|
|
613
616
|
"docs.error.commentSourceConflict": "--comment와 --comment-file 중 하나만 사용하세요",
|
|
614
617
|
"docs.error.commentFileIsDocument": "--comment-file은 검수 대상 문서 자체를 가리킬 수 없습니다",
|
|
618
|
+
"docs.error.changedPathConflict": "--changed는 문서 경로 없이 사용하세요",
|
|
619
|
+
"docs.error.changedCommentConflict": "--changed는 --comment 또는 --comment-file 없이 사용하세요",
|
|
620
|
+
"docs.error.changedFilesUnavailable": "git status로 변경 파일을 확인하지 못했습니다: {message}",
|
|
615
621
|
"docs.error.invalidStatus": "검수 상태가 올바르지 않습니다. 다음 중 하나를 사용하세요: {statuses}",
|
|
616
622
|
"docs.error.invalidReviewerKind": "검수자 종류가 올바르지 않습니다. 다음 중 하나를 사용하세요: {kinds}",
|
|
617
623
|
"docs.error.missingReviewerKind": "--reviewer-kind가 없습니다. 다음 중 하나를 사용하세요: {kinds}",
|
|
@@ -765,11 +771,17 @@ export const koMessages = {
|
|
|
765
771
|
"scriptPack.suggest.empty": "제공된 경로, skill, phase에 맞는 script-pack 추천이 없습니다.",
|
|
766
772
|
"scriptPack.pack.code.summary": "소스 코드 탐색 utility script",
|
|
767
773
|
"scriptPack.pack.core.summary": "핵심 내장 utility script",
|
|
774
|
+
"scriptPack.pack.docs.summary": "Documentation reference utility scripts",
|
|
768
775
|
"scriptPack.pack.repo.summary": "Repository-boundary utility scripts",
|
|
769
776
|
"scriptPack.script.codeOutline.summary": "TypeScript와 JavaScript 파일에서 symbol header와 라인 범위를 스캔합니다",
|
|
770
|
-
"scriptPack.script.codeSymbolRead.summary": "symbol
|
|
777
|
+
"scriptPack.script.codeSymbolRead.summary": "source anchor, symbol 라인, 또는 명시 라인 범위로 제한된 소스 snippet을 읽습니다",
|
|
778
|
+
"scriptPack.script.codeRouteOutline.summary": "Hono, Elysia, Axum, NestJS route method, path, handler, lifecycle chain을 스캔합니다",
|
|
779
|
+
"scriptPack.script.codeExportDiff.summary": "git ref 사이의 exported source signature와 return metadata를 비교합니다",
|
|
771
780
|
"scriptPack.script.textBudget.summary": "파일이나 JSON 문자열 필드의 정확한 텍스트 길이 예산을 검사합니다",
|
|
781
|
+
"scriptPack.script.referenceDrift.summary": "Check documented command, script-pack, schema, and path references for drift",
|
|
782
|
+
"scriptPack.script.configChain.summary": "Inspect nearby config files and static config inheritance",
|
|
772
783
|
"scriptPack.script.generatedBoundary.summary": "Check whether candidate paths cross generated, ignored, protected, vendor, or cache boundaries",
|
|
784
|
+
"scriptPack.script.relatedFiles.summary": "Map likely related files for source-oriented repository navigation",
|
|
773
785
|
"scriptPack.label.script": "Script",
|
|
774
786
|
"scriptPack.label.actions": "작업",
|
|
775
787
|
"scriptPack.label.schema": "스키마",
|
|
@@ -796,7 +808,8 @@ export const koMessages = {
|
|
|
796
808
|
"codeOutline.error.missingPath": "스캔할 소스 파일이나 디렉터리를 하나 이상 제공하세요",
|
|
797
809
|
"codeOutline.error.invalidPositiveInteger": "{option}은 양의 safe integer여야 합니다: {value}",
|
|
798
810
|
"codeOutline.error.invalidNonNegativeInteger": "{option}은 0 이상의 safe integer여야 합니다: {value}",
|
|
799
|
-
"codeSymbolRead.help.summary": "symbol
|
|
811
|
+
"codeSymbolRead.help.summary": "source anchor, symbol 라인, 또는 명시 라인 범위에서 제한된 TypeScript 또는 JavaScript source snippet을 읽습니다.",
|
|
812
|
+
"codeSymbolRead.help.option.anchor": "target symbol로 해석할 source anchor id입니다",
|
|
800
813
|
"codeSymbolRead.help.option.startLine": "symbol 또는 범위로 해석할 1-based source line입니다",
|
|
801
814
|
"codeSymbolRead.help.option.endLine": "선택적 1-based end line입니다. 생략하면 포함하는 outline symbol을 읽습니다",
|
|
802
815
|
"codeSymbolRead.help.option.contextLines": "포함할 주변 context line 수입니다. 기본값: 0",
|
|
@@ -813,6 +826,56 @@ export const koMessages = {
|
|
|
813
826
|
"codeSymbolRead.error.missingPath": "읽을 소스 파일을 정확히 하나 제공하세요",
|
|
814
827
|
"codeSymbolRead.error.tooManyPaths": "읽을 소스 파일은 하나만 제공하세요",
|
|
815
828
|
"codeSymbolRead.error.missingStartLine": "--start-line <line>을 제공하세요",
|
|
829
|
+
"codeSymbolRead.error.anchorConflict": "--anchor <id> 또는 <path>와 --start-line/--end-line 중 하나만 사용하세요",
|
|
830
|
+
"codeRouteOutline.help.summary": "Hono, Elysia, Axum, NestJS route 소스 파일에서 method, path, handler, framework, lifecycle chain, line metadata를 스캔합니다.",
|
|
831
|
+
"codeRouteOutline.help.option.maxFiles": "스캔할 최대 소스 파일 수입니다. 기본값: 200",
|
|
832
|
+
"codeRouteOutline.help.option.maxFileBytes": "각 소스 파일에서 읽을 최대 바이트입니다. 기본값: 1048576",
|
|
833
|
+
"codeRouteOutline.help.exit.ok": "route outline을 finding 없이 스캔했습니다",
|
|
834
|
+
"codeRouteOutline.help.exit.fail": "route outline에서 잘못된 입력, 읽을 수 없는 파일, 미지원 파일, 또는 스캔 제한이 발견되었습니다",
|
|
835
|
+
"codeRouteOutline.title": "mustflow route outline",
|
|
836
|
+
"codeRouteOutline.label.files": "Files",
|
|
837
|
+
"codeRouteOutline.label.routes": "Routes",
|
|
838
|
+
"codeRouteOutline.label.findings": "Findings",
|
|
839
|
+
"codeRouteOutline.label.outline": "Route outline",
|
|
840
|
+
"codeRouteOutline.label.issues": "Issues",
|
|
841
|
+
"codeRouteOutline.clean": "Hono, Elysia, Axum, NestJS route를 찾지 못했습니다.",
|
|
842
|
+
"codeRouteOutline.error.missingAction": "route-outline action을 지정하세요: scan",
|
|
843
|
+
"codeRouteOutline.error.unknownAction": "알 수 없는 route-outline action: {action}",
|
|
844
|
+
"codeRouteOutline.error.missingPath": "스캔할 소스 파일이나 디렉터리를 하나 이상 제공하세요",
|
|
845
|
+
"codeRouteOutline.error.invalidPositiveInteger": "{option}은 양의 safe integer여야 합니다: {value}",
|
|
846
|
+
"exportDiff.help.summary": "Compare exported TS/JS signatures, return metadata, and package surface hints across a git base and head.",
|
|
847
|
+
"exportDiff.help.option.base": "Git base ref to compare from. Default: HEAD",
|
|
848
|
+
"exportDiff.help.option.head": "Git head ref to compare to. Omit to compare the base with the working tree.",
|
|
849
|
+
"exportDiff.help.option.maxFiles": "Maximum number of changed source files to inspect. Default: 100",
|
|
850
|
+
"exportDiff.help.option.maxFileBytes": "Maximum bytes to read from each source file snapshot. Default: 1048576",
|
|
851
|
+
"exportDiff.help.exit.ok": "The export diff completed without input errors",
|
|
852
|
+
"exportDiff.help.exit.fail": "The export diff could not read git input or exceeded configured limits",
|
|
853
|
+
"exportDiff.title": "mustflow export diff",
|
|
854
|
+
"exportDiff.label.files": "Files",
|
|
855
|
+
"exportDiff.label.added": "Added",
|
|
856
|
+
"exportDiff.label.removed": "Removed",
|
|
857
|
+
"exportDiff.label.changed": "Changed",
|
|
858
|
+
"exportDiff.label.exports": "Exports",
|
|
859
|
+
"exportDiff.label.findings": "Findings",
|
|
860
|
+
"exportDiff.label.issues": "Issues",
|
|
861
|
+
"exportDiff.clean": "No exported TypeScript or JavaScript declaration changes were found.",
|
|
862
|
+
"exportDiff.error.missingAction": "Specify an export-diff action: compare",
|
|
863
|
+
"exportDiff.error.unknownAction": "Unknown export-diff action: {action}",
|
|
864
|
+
"exportDiff.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
865
|
+
"referenceDrift.help.summary": "Check documentation references against current mf commands, script-pack refs, schema files, and repository paths.",
|
|
866
|
+
"referenceDrift.help.option.maxFiles": "Maximum number of document files to inspect. Default: 200",
|
|
867
|
+
"referenceDrift.help.option.maxFileBytes": "Maximum bytes to read from each document file. Default: 524288",
|
|
868
|
+
"referenceDrift.help.exit.ok": "All checked documentation references resolved against current repository surfaces",
|
|
869
|
+
"referenceDrift.help.exit.fail": "A documentation reference was stale, missing, unknown, unreadable, or over a configured limit",
|
|
870
|
+
"referenceDrift.title": "mustflow reference drift",
|
|
871
|
+
"referenceDrift.label.files": "Files",
|
|
872
|
+
"referenceDrift.label.references": "References",
|
|
873
|
+
"referenceDrift.label.findings": "Findings",
|
|
874
|
+
"referenceDrift.label.issues": "Issues",
|
|
875
|
+
"referenceDrift.clean": "No documentation references were found.",
|
|
876
|
+
"referenceDrift.error.missingAction": "Specify a reference-drift action: check",
|
|
877
|
+
"referenceDrift.error.unknownAction": "Unknown reference-drift action: {action}",
|
|
878
|
+
"referenceDrift.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
816
879
|
"textBudget.help.summary": "파일이나 JSON 문자열 필드의 정확한 텍스트 길이 예산을 검사합니다. 기본 단위는 grapheme입니다.",
|
|
817
880
|
"textBudget.help.option.min": "최소 단위 수를 요구합니다",
|
|
818
881
|
"textBudget.help.option.max": "최대 단위 수를 요구합니다",
|
|
@@ -849,6 +912,42 @@ export const koMessages = {
|
|
|
849
912
|
"generatedBoundary.error.missingAction": "Specify a generated-boundary action: check",
|
|
850
913
|
"generatedBoundary.error.unknownAction": "Unknown generated-boundary action: {action}",
|
|
851
914
|
"generatedBoundary.error.missingPath": "Provide at least one path to check",
|
|
915
|
+
"relatedFiles.help.summary": "Map direct imports, importers, sibling files, and nearby config boundaries for source-oriented repository navigation.",
|
|
916
|
+
"relatedFiles.help.option.maxFiles": "Maximum number of source or related files to scan. Default: 1000",
|
|
917
|
+
"relatedFiles.help.option.maxFileBytes": "Maximum bytes to read from each source file. Default: 262144",
|
|
918
|
+
"relatedFiles.help.option.maxCandidates": "Maximum number of related-file candidates to report. Default: 200",
|
|
919
|
+
"relatedFiles.help.exit.ok": "The related-file map completed without input or scan-limit findings",
|
|
920
|
+
"relatedFiles.help.exit.fail": "The related-file map found invalid input, unreadable paths, or scan limits",
|
|
921
|
+
"relatedFiles.title": "mustflow related files",
|
|
922
|
+
"relatedFiles.label.targets": "Targets",
|
|
923
|
+
"relatedFiles.label.candidates": "Candidates",
|
|
924
|
+
"relatedFiles.label.truncated": "Truncated",
|
|
925
|
+
"relatedFiles.label.related": "Related files",
|
|
926
|
+
"relatedFiles.label.confidence": "confidence",
|
|
927
|
+
"relatedFiles.label.findings": "Findings",
|
|
928
|
+
"relatedFiles.label.issues": "Issues",
|
|
929
|
+
"relatedFiles.clean": "No related-file candidates were found.",
|
|
930
|
+
"relatedFiles.error.missingAction": "Specify a related-files action: map",
|
|
931
|
+
"relatedFiles.error.unknownAction": "Unknown related-files action: {action}",
|
|
932
|
+
"relatedFiles.error.missingPath": "Provide at least one path to map",
|
|
933
|
+
"relatedFiles.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
934
|
+
"configChain.help.summary": "Inspect nearby config files, static inheritance, workspace hints, and dynamic config boundaries.",
|
|
935
|
+
"configChain.help.option.maxConfigs": "Maximum number of config files to inspect. Default: 120",
|
|
936
|
+
"configChain.help.option.maxFileBytes": "Maximum bytes to read from each config file. Default: 262144",
|
|
937
|
+
"configChain.help.exit.ok": "The config chain was inspected without blocking findings",
|
|
938
|
+
"configChain.help.exit.fail": "The config chain found invalid input, unreadable files, parse errors, or scan limits",
|
|
939
|
+
"configChain.title": "mustflow config chain",
|
|
940
|
+
"configChain.label.targets": "Targets",
|
|
941
|
+
"configChain.label.configs": "Configs",
|
|
942
|
+
"configChain.label.edges": "Edges",
|
|
943
|
+
"configChain.label.findings": "Findings",
|
|
944
|
+
"configChain.label.dynamic": "dynamic",
|
|
945
|
+
"configChain.label.issues": "Issues",
|
|
946
|
+
"configChain.clean": "No nearby config files were found.",
|
|
947
|
+
"configChain.error.missingAction": "Specify a config-chain action: inspect",
|
|
948
|
+
"configChain.error.unknownAction": "Unknown config-chain action: {action}",
|
|
949
|
+
"configChain.error.missingPath": "Provide at least one path to inspect",
|
|
950
|
+
"configChain.error.invalidPositiveInteger": "{option} must be a positive safe integer: {value}",
|
|
852
951
|
"run.help.summary": ".mustflow/config/commands.toml에 설정된 일회성 명령을 실행합니다.",
|
|
853
952
|
"run.help.option.dryRun": "실행하지 않고 명령 계획을 출력합니다",
|
|
854
953
|
"run.help.option.planOnly": "--dry-run과 같은 동작입니다",
|