pumuki 6.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +370 -0
- package/VERSION +1 -0
- package/assets/Hook_01.png +0 -0
- package/assets/Hook_02.png +0 -0
- package/assets/ai-start.png +0 -0
- package/assets/ai_gate.png +0 -0
- package/assets/ast_intelligence_01.png +0 -0
- package/assets/ast_intelligence_01.svg +40 -0
- package/assets/ast_intelligence_02.png +0 -0
- package/assets/ast_intelligence_02.svg +39 -0
- package/assets/ast_intelligence_03.png +0 -0
- package/assets/ast_intelligence_03.svg +55 -0
- package/assets/ast_intelligence_04.png +0 -0
- package/assets/ast_intelligence_04.svg +39 -0
- package/assets/ast_intelligence_05.png +0 -0
- package/assets/ast_intelligence_05.svg +45 -0
- package/assets/logo.png +0 -0
- package/assets/logo_banner.svg +29 -0
- package/assets/pre-flight-check.png +0 -0
- package/bin/_run-ts-entry.js +46 -0
- package/bin/pumuki-ci.js +5 -0
- package/bin/pumuki-framework.js +5 -0
- package/bin/pumuki-mcp-evidence.js +5 -0
- package/bin/pumuki-pre-commit.js +5 -0
- package/bin/pumuki-pre-push.js +5 -0
- package/bin/pumuki.js +5 -0
- package/core/facts/DependencyFact.test.ts +38 -0
- package/core/facts/DependencyFact.ts +6 -0
- package/core/facts/Fact.test.ts +74 -0
- package/core/facts/Fact.ts +10 -0
- package/core/facts/FactSet.test.ts +38 -0
- package/core/facts/FactSet.ts +3 -0
- package/core/facts/FileChangeFact.test.ts +36 -0
- package/core/facts/FileChangeFact.ts +5 -0
- package/core/facts/FileContentFact.test.ts +26 -0
- package/core/facts/FileContentFact.ts +5 -0
- package/core/facts/HeuristicFact.test.ts +34 -0
- package/core/facts/HeuristicFact.ts +10 -0
- package/core/facts/detectors/browser/index.test.ts +131 -0
- package/core/facts/detectors/browser/index.ts +67 -0
- package/core/facts/detectors/fs/callbacks.test.ts +73 -0
- package/core/facts/detectors/fs/callbacks.ts +93 -0
- package/core/facts/detectors/fs/promises.test.ts +88 -0
- package/core/facts/detectors/fs/promises.ts +75 -0
- package/core/facts/detectors/fs/sync.test.ts +48 -0
- package/core/facts/detectors/fs/sync.ts +3 -0
- package/core/facts/detectors/fs/syncPart1.test.ts +52 -0
- package/core/facts/detectors/fs/syncPart1.ts +3 -0
- package/core/facts/detectors/fs/syncPart1DirTimes.test.ts +58 -0
- package/core/facts/detectors/fs/syncPart1DirTimes.ts +93 -0
- package/core/facts/detectors/fs/syncPart1FileOps.test.ts +64 -0
- package/core/facts/detectors/fs/syncPart1FileOps.ts +93 -0
- package/core/facts/detectors/fs/syncPart1Metadata.test.ts +64 -0
- package/core/facts/detectors/fs/syncPart1Metadata.ts +139 -0
- package/core/facts/detectors/fs/syncPart2.test.ts +62 -0
- package/core/facts/detectors/fs/syncPart2.ts +4 -0
- package/core/facts/detectors/fs/syncPart2Core.test.ts +62 -0
- package/core/facts/detectors/fs/syncPart2Core.ts +70 -0
- package/core/facts/detectors/fs/syncPart2Io.test.ts +62 -0
- package/core/facts/detectors/fs/syncPart2Io.ts +70 -0
- package/core/facts/detectors/fs/syncPart2Permissions.test.ts +66 -0
- package/core/facts/detectors/fs/syncPart2Permissions.ts +93 -0
- package/core/facts/detectors/fs/syncPart2Times.test.ts +66 -0
- package/core/facts/detectors/fs/syncPart2Times.ts +93 -0
- package/core/facts/detectors/fs/syncPart3.test.ts +62 -0
- package/core/facts/detectors/fs/syncPart3.ts +3 -0
- package/core/facts/detectors/fs/syncPart3DescriptorIo.test.ts +69 -0
- package/core/facts/detectors/fs/syncPart3DescriptorIo.ts +93 -0
- package/core/facts/detectors/fs/syncPart3Links.test.ts +62 -0
- package/core/facts/detectors/fs/syncPart3Links.ts +70 -0
- package/core/facts/detectors/fs/syncPart3PathOps.test.ts +72 -0
- package/core/facts/detectors/fs/syncPart3PathOps.ts +116 -0
- package/core/facts/detectors/process/core.test.ts +147 -0
- package/core/facts/detectors/process/core.ts +120 -0
- package/core/facts/detectors/process/index.test.ts +61 -0
- package/core/facts/detectors/process/index.ts +3 -0
- package/core/facts/detectors/process/shell.test.ts +137 -0
- package/core/facts/detectors/process/shell.ts +170 -0
- package/core/facts/detectors/process/spawn.test.ts +155 -0
- package/core/facts/detectors/process/spawn.ts +121 -0
- package/core/facts/detectors/security/index.test.ts +382 -0
- package/core/facts/detectors/security/index.ts +16 -0
- package/core/facts/detectors/security/securityCredentials.test.ts +149 -0
- package/core/facts/detectors/security/securityCredentials.ts +192 -0
- package/core/facts/detectors/security/securityCrypto.test.ts +122 -0
- package/core/facts/detectors/security/securityCrypto.ts +88 -0
- package/core/facts/detectors/security/securityJwt.test.ts +187 -0
- package/core/facts/detectors/security/securityJwt.ts +134 -0
- package/core/facts/detectors/security/securityTls.test.ts +121 -0
- package/core/facts/detectors/security/securityTls.ts +88 -0
- package/core/facts/detectors/text/android.test.ts +87 -0
- package/core/facts/detectors/text/android.ts +38 -0
- package/core/facts/detectors/text/ios.test.ts +83 -0
- package/core/facts/detectors/text/ios.ts +108 -0
- package/core/facts/detectors/text/utils.test.ts +71 -0
- package/core/facts/detectors/text/utils.ts +146 -0
- package/core/facts/detectors/typescript/index.test.ts +231 -0
- package/core/facts/detectors/typescript/index.ts +167 -0
- package/core/facts/detectors/utils/astHelpers.test.ts +79 -0
- package/core/facts/detectors/utils/astHelpers.ts +33 -0
- package/core/facts/detectors/vm/index.test.ts +58 -0
- package/core/facts/detectors/vm/index.ts +27 -0
- package/core/facts/extractHeuristicFacts.ts +394 -0
- package/core/facts/index.test.ts +72 -0
- package/core/facts/index.ts +11 -0
- package/core/gate/Finding.test.ts +52 -0
- package/core/gate/Finding.ts +9 -0
- package/core/gate/GateOutcome.test.ts +20 -0
- package/core/gate/GateOutcome.ts +1 -0
- package/core/gate/GatePolicy.test.ts +28 -0
- package/core/gate/GatePolicy.ts +9 -0
- package/core/gate/GateStage.test.ts +22 -0
- package/core/gate/GateStage.ts +1 -0
- package/core/gate/conditionMatches.test.ts +110 -0
- package/core/gate/conditionMatches.ts +174 -0
- package/core/gate/evaluateGate.test.ts +77 -0
- package/core/gate/evaluateGate.ts +23 -0
- package/core/gate/evaluateRules.test.ts +106 -0
- package/core/gate/evaluateRules.ts +40 -0
- package/core/gate/index.test.ts +39 -0
- package/core/gate/index.ts +6 -0
- package/core/rules/Condition.test.ts +54 -0
- package/core/rules/Condition.ts +40 -0
- package/core/rules/Consequence.test.ts +25 -0
- package/core/rules/Consequence.ts +5 -0
- package/core/rules/README.md +6 -0
- package/core/rules/RuleDefinition.test.ts +55 -0
- package/core/rules/RuleDefinition.ts +20 -0
- package/core/rules/RuleSet.test.ts +48 -0
- package/core/rules/RuleSet.ts +3 -0
- package/core/rules/Severity.test.ts +19 -0
- package/core/rules/Severity.ts +12 -0
- package/core/rules/index.test.ts +41 -0
- package/core/rules/index.ts +7 -0
- package/core/rules/mergeRuleSets.ts +53 -0
- package/core/rules/presets/androidRuleSet.test.ts +22 -0
- package/core/rules/presets/androidRuleSet.ts +62 -0
- package/core/rules/presets/astHeuristicsRuleSet.ts +31 -0
- package/core/rules/presets/backendRuleSet.test.ts +27 -0
- package/core/rules/presets/backendRuleSet.ts +61 -0
- package/core/rules/presets/exampleRuleSet.test.ts +25 -0
- package/core/rules/presets/exampleRuleSet.ts +34 -0
- package/core/rules/presets/frontendRuleSet.test.ts +27 -0
- package/core/rules/presets/frontendRuleSet.ts +61 -0
- package/core/rules/presets/heuristics/android.ts +58 -0
- package/core/rules/presets/heuristics/browser.ts +58 -0
- package/core/rules/presets/heuristics/fsCallbacks.ts +9 -0
- package/core/rules/presets/heuristics/fsCallbacksFileOperationsRules.ts +400 -0
- package/core/rules/presets/heuristics/fsCallbacksMetadataRules.ts +418 -0
- package/core/rules/presets/heuristics/fsPromises.ts +9 -0
- package/core/rules/presets/heuristics/fsPromisesFileOperations.ts +184 -0
- package/core/rules/presets/heuristics/fsPromisesMetadataRules.ts +238 -0
- package/core/rules/presets/heuristics/fsSync.ts +13 -0
- package/core/rules/presets/heuristics/fsSyncAppendRules.ts +22 -0
- package/core/rules/presets/heuristics/fsSyncDescriptorRules.ts +328 -0
- package/core/rules/presets/heuristics/fsSyncFileOperationsRules.ts +382 -0
- package/core/rules/presets/heuristics/fsSyncPathRules.ts +4 -0
- package/core/rules/presets/heuristics/ios.ts +94 -0
- package/core/rules/presets/heuristics/process.ts +241 -0
- package/core/rules/presets/heuristics/security.ts +13 -0
- package/core/rules/presets/heuristics/securityCredentialsRules.ts +80 -0
- package/core/rules/presets/heuristics/securityCryptoRules.ts +61 -0
- package/core/rules/presets/heuristics/securityJwtRules.ts +61 -0
- package/core/rules/presets/heuristics/securityTlsRules.ts +42 -0
- package/core/rules/presets/heuristics/typescript.ts +220 -0
- package/core/rules/presets/heuristics/vm.ts +23 -0
- package/core/rules/presets/index.test.ts +32 -0
- package/core/rules/presets/index.ts +8 -0
- package/core/rules/presets/iosEnterpriseRuleSet.ts +204 -0
- package/core/rules/presets/iosNonNegotiableRuleSet.ts +76 -0
- package/core/rules/presets/rulePackVersions.test.ts +21 -0
- package/core/rules/presets/rulePackVersions.ts +11 -0
- package/core/utils/stableStringify.ts +18 -0
- package/docs/API_REFERENCE.md +233 -0
- package/docs/ARCHITECTURE.md +190 -0
- package/docs/ARCHITECTURE_DETAILED.md +165 -0
- package/docs/AST_HEURISTICS_REINTRODUCTION_PLAN.md +88 -0
- package/docs/BRANCH_PROTECTION_GUIDE.md +50 -0
- package/docs/CODE_STANDARDS.md +73 -0
- package/docs/CONFIGURATION.md +132 -0
- package/docs/CONTRIBUTING.md +92 -0
- package/docs/DEPENDENCIES.md +54 -0
- package/docs/HOW_IT_WORKS.md +155 -0
- package/docs/INSTALLATION.md +172 -0
- package/docs/MCP_AGENT_CONTEXT_CONSUMPTION.md +189 -0
- package/docs/MCP_EVIDENCE_CONTEXT_SERVER.md +242 -0
- package/docs/MCP_SERVERS.md +114 -0
- package/docs/README.md +85 -0
- package/docs/REFRACTOR_PROGRESS.md +155 -0
- package/docs/RELEASE_NOTES.md +175 -0
- package/docs/TESTING.md +101 -0
- package/docs/TODO.md +692 -0
- package/docs/USAGE.md +259 -0
- package/docs/evidence-v2.1.md +49 -0
- package/docs/images/README.md +20 -0
- package/docs/rule-packs/README.md +45 -0
- package/docs/rule-packs/android.md +21 -0
- package/docs/rule-packs/backend.md +24 -0
- package/docs/rule-packs/frontend.md +22 -0
- package/docs/rule-packs/heuristics.md +1304 -0
- package/docs/rule-packs/ios.md +22 -0
- package/docs/skills-repo-enforcement-migration.md +73 -0
- package/docs/validation/README.md +82 -0
- package/docs/validation/adapter-hook-runtime-local-report.md +45 -0
- package/docs/validation/adapter-hook-runtime-validation.md +82 -0
- package/docs/validation/adapter-real-session-report-template.md +63 -0
- package/docs/validation/consumer-ci-startup-failure-playbook.md +184 -0
- package/docs/validation/consumer-startup-escalation-handoff-latest.md +237 -0
- package/docs/validation/enterprise-consumer-isolation-policy.md +45 -0
- package/docs/validation/github-support-ticket-template-startup-failure.md +84 -0
- package/docs/validation/mock-consumer-integration-runbook.md +89 -0
- package/docs/validation/phase5-execution-closure.md +227 -0
- package/docs/validation/phase8-external-rollout-pack.md +168 -0
- package/docs/validation/phase8-post-billing-reactivation-runbook.md +133 -0
- package/docs/validation/skills-rollout-consumer-repositories.md +124 -0
- package/index.js +15 -0
- package/integrations/config/compileSkillsLock.ts +231 -0
- package/integrations/config/heuristics.ts +18 -0
- package/integrations/config/loadProjectRules.ts +43 -0
- package/integrations/config/projectRules.ts +6 -0
- package/integrations/config/projectRulesSchema.ts +85 -0
- package/integrations/config/skillsCompilerTemplates.ts +151 -0
- package/integrations/config/skillsLock.ts +248 -0
- package/integrations/config/skillsPolicy.ts +178 -0
- package/integrations/config/skillsRuleSet.ts +188 -0
- package/integrations/config/skillsSources.ts +88 -0
- package/integrations/evidence/buildEvidence.ts +350 -0
- package/integrations/evidence/generateEvidence.ts +14 -0
- package/integrations/evidence/humanIntent.ts +115 -0
- package/integrations/evidence/readEvidence.ts +47 -0
- package/integrations/evidence/schema.ts +97 -0
- package/integrations/evidence/writeEvidence.ts +201 -0
- package/integrations/gate/stagePolicies.ts +295 -0
- package/integrations/git/EvidenceService.ts +111 -0
- package/integrations/git/GitService.ts +35 -0
- package/integrations/git/baselineRuleSets.ts +58 -0
- package/integrations/git/ciAndroid.cli.ts +4 -0
- package/integrations/git/ciAndroid.ts +1 -0
- package/integrations/git/ciBackend.cli.ts +4 -0
- package/integrations/git/ciBackend.ts +1 -0
- package/integrations/git/ciFrontend.cli.ts +4 -0
- package/integrations/git/ciFrontend.ts +1 -0
- package/integrations/git/ciIOS.cli.ts +4 -0
- package/integrations/git/ciIOS.ts +1 -0
- package/integrations/git/evaluateStagedIOS.ts +127 -0
- package/integrations/git/getCommitRangeFacts.ts +28 -0
- package/integrations/git/gitDiffUtils.ts +90 -0
- package/integrations/git/index.ts +13 -0
- package/integrations/git/preCommitAndroid.cli.ts +4 -0
- package/integrations/git/preCommitAndroid.ts +1 -0
- package/integrations/git/preCommitBackend.cli.ts +4 -0
- package/integrations/git/preCommitBackend.ts +1 -0
- package/integrations/git/preCommitFrontend.cli.ts +4 -0
- package/integrations/git/preCommitFrontend.ts +1 -0
- package/integrations/git/preCommitIOS.cli.ts +4 -0
- package/integrations/git/preCommitIOS.ts +1 -0
- package/integrations/git/prePushAndroid.cli.ts +4 -0
- package/integrations/git/prePushAndroid.ts +1 -0
- package/integrations/git/prePushBackend.cli.ts +4 -0
- package/integrations/git/prePushBackend.ts +1 -0
- package/integrations/git/prePushFrontend.cli.ts +4 -0
- package/integrations/git/prePushFrontend.ts +1 -0
- package/integrations/git/prePushIOS.cli.ts +4 -0
- package/integrations/git/prePushIOS.ts +1 -0
- package/integrations/git/resolveGitRefs.ts +51 -0
- package/integrations/git/runCliCommand.ts +11 -0
- package/integrations/git/runPlatformGate.ts +89 -0
- package/integrations/git/runPlatformGateEvaluation.ts +82 -0
- package/integrations/git/runPlatformGateEvidence.ts +41 -0
- package/integrations/git/runPlatformGateFacts.ts +34 -0
- package/integrations/git/runPlatformGateOutput.ts +11 -0
- package/integrations/git/stageRunners.ts +40 -0
- package/integrations/lifecycle/artifacts.ts +26 -0
- package/integrations/lifecycle/cli.ts +180 -0
- package/integrations/lifecycle/constants.ts +13 -0
- package/integrations/lifecycle/consumerPackage.ts +48 -0
- package/integrations/lifecycle/doctor.ts +90 -0
- package/integrations/lifecycle/gitService.ts +63 -0
- package/integrations/lifecycle/hookBlock.ts +93 -0
- package/integrations/lifecycle/hookManager.ts +107 -0
- package/integrations/lifecycle/index.ts +6 -0
- package/integrations/lifecycle/install.ts +44 -0
- package/integrations/lifecycle/npmService.ts +21 -0
- package/integrations/lifecycle/packageInfo.ts +5 -0
- package/integrations/lifecycle/remove.ts +95 -0
- package/integrations/lifecycle/state.ts +41 -0
- package/integrations/lifecycle/status.ts +30 -0
- package/integrations/lifecycle/uninstall.ts +36 -0
- package/integrations/lifecycle/update.ts +77 -0
- package/integrations/mcp/evidenceContextServer.cli.ts +16 -0
- package/integrations/mcp/evidenceContextServer.ts +152 -0
- package/integrations/mcp/evidenceFacets.ts +3 -0
- package/integrations/mcp/evidenceFacetsBase.ts +94 -0
- package/integrations/mcp/evidenceFacetsSnapshot.ts +104 -0
- package/integrations/mcp/evidenceFacetsSuppressed.ts +3 -0
- package/integrations/mcp/evidenceFacetsSuppressedBase.ts +221 -0
- package/integrations/mcp/evidenceFacetsSuppressedRelations.ts +263 -0
- package/integrations/mcp/evidenceFacetsSuppressedShare.ts +2 -0
- package/integrations/mcp/evidenceFacetsSuppressedShareCore.ts +442 -0
- package/integrations/mcp/evidenceFacetsSuppressedShareTriage.ts +487 -0
- package/integrations/mcp/evidencePayloadCollections.ts +37 -0
- package/integrations/mcp/evidencePayloadCollectionsFindings.ts +64 -0
- package/integrations/mcp/evidencePayloadCollectionsLedger.ts +69 -0
- package/integrations/mcp/evidencePayloadCollectionsPaging.ts +38 -0
- package/integrations/mcp/evidencePayloadCollectionsPlatforms.ts +49 -0
- package/integrations/mcp/evidencePayloadCollectionsRulesets.ts +50 -0
- package/integrations/mcp/evidencePayloadCollectionsSorters.ts +62 -0
- package/integrations/mcp/evidencePayloadConfig.ts +79 -0
- package/integrations/mcp/evidencePayloadSummary.ts +144 -0
- package/integrations/mcp/evidencePayloadSummarySuppressed.ts +361 -0
- package/integrations/mcp/evidencePayloads.ts +8 -0
- package/integrations/mcp/index.ts +1 -0
- package/integrations/platform/detectAndroid.ts +25 -0
- package/integrations/platform/detectBackend.ts +22 -0
- package/integrations/platform/detectFrontend.ts +29 -0
- package/integrations/platform/detectPlatforms.ts +69 -0
- package/package.json +218 -0
- package/scripts/adapter-readiness-cli-lib.ts +64 -0
- package/scripts/adapter-readiness-contract.ts +46 -0
- package/scripts/adapter-readiness-lib.ts +10 -0
- package/scripts/adapter-readiness-markdown-lib.ts +41 -0
- package/scripts/adapter-readiness-markdown-next-actions-lib.ts +33 -0
- package/scripts/adapter-readiness-markdown-sections-lib.ts +78 -0
- package/scripts/adapter-readiness-parser-lib.ts +30 -0
- package/scripts/adapter-readiness-summary-lib.ts +62 -0
- package/scripts/adapter-real-session-analysis-evaluation-lib.ts +49 -0
- package/scripts/adapter-real-session-analysis-lib.ts +8 -0
- package/scripts/adapter-real-session-analysis-messages-lib.ts +58 -0
- package/scripts/adapter-real-session-analysis-signals-lib.ts +59 -0
- package/scripts/adapter-real-session-analysis-status-lib.ts +29 -0
- package/scripts/adapter-real-session-arg-values-lib.ts +47 -0
- package/scripts/adapter-real-session-args-lib.ts +46 -0
- package/scripts/adapter-real-session-audit-snapshot-lib.ts +70 -0
- package/scripts/adapter-real-session-context-lib.ts +7 -0
- package/scripts/adapter-real-session-contract.ts +54 -0
- package/scripts/adapter-real-session-fs-lib.ts +36 -0
- package/scripts/adapter-real-session-git-lib.ts +13 -0
- package/scripts/adapter-real-session-hook-config-lib.ts +24 -0
- package/scripts/adapter-real-session-markdown-core-sections-lib.ts +11 -0
- package/scripts/adapter-real-session-markdown-lib.ts +25 -0
- package/scripts/adapter-real-session-markdown-sections-context-lib.ts +56 -0
- package/scripts/adapter-real-session-markdown-sections-evaluation-lib.ts +71 -0
- package/scripts/adapter-real-session-markdown-sections-lib.ts +34 -0
- package/scripts/adapter-real-session-markdown-snippet-section-lib.ts +44 -0
- package/scripts/adapter-real-session-markdown-snippets-lib.ts +19 -0
- package/scripts/adapter-real-session-markdown-value-formatters-lib.ts +10 -0
- package/scripts/adapter-real-session-report-lib.ts +16 -0
- package/scripts/adapter-real-session-status-parser-lib.ts +42 -0
- package/scripts/adapter-session-status-args-lib.ts +46 -0
- package/scripts/adapter-session-status-audit-latest-lib.ts +22 -0
- package/scripts/adapter-session-status-audit-tail-entries-lib.ts +78 -0
- package/scripts/adapter-session-status-audit-tail-lib.ts +15 -0
- package/scripts/adapter-session-status-command-lib.ts +49 -0
- package/scripts/adapter-session-status-contract.ts +55 -0
- package/scripts/adapter-session-status-hook-log-filter-lib.ts +38 -0
- package/scripts/adapter-session-status-lib.ts +25 -0
- package/scripts/adapter-session-status-log-filter-lib.ts +3 -0
- package/scripts/adapter-session-status-log-utils-lib.ts +23 -0
- package/scripts/adapter-session-status-markdown-lib.ts +65 -0
- package/scripts/adapter-session-status-report-lib.ts +21 -0
- package/scripts/adapter-session-status-tail-readers-lib.ts +58 -0
- package/scripts/adapter-session-status-verdict-lib.ts +43 -0
- package/scripts/adapter-session-status-writes-log-filter-lib.ts +25 -0
- package/scripts/build-adapter-readiness.ts +51 -0
- package/scripts/build-adapter-real-session-report.ts +58 -0
- package/scripts/build-adapter-session-status.ts +42 -0
- package/scripts/build-consumer-startup-failure-support-bundle.ts +22 -0
- package/scripts/build-consumer-startup-triage-arg-flags-lib.ts +26 -0
- package/scripts/build-consumer-startup-triage-arg-values-lib.ts +45 -0
- package/scripts/build-consumer-startup-triage-args-lib.ts +59 -0
- package/scripts/build-consumer-startup-triage-contract.ts +25 -0
- package/scripts/build-consumer-startup-triage-runner-lib.ts +59 -0
- package/scripts/build-consumer-startup-triage.ts +58 -0
- package/scripts/build-consumer-startup-unblock-status.ts +34 -0
- package/scripts/build-consumer-support-ticket-draft.ts +32 -0
- package/scripts/build-mock-consumer-ab-report.ts +34 -0
- package/scripts/build-mock-consumer-startup-triage.ts +71 -0
- package/scripts/build-phase5-blockers-readiness.ts +69 -0
- package/scripts/build-phase5-execution-closure-status-output-lib.ts +22 -0
- package/scripts/build-phase5-execution-closure-status-runner-lib.ts +61 -0
- package/scripts/build-phase5-execution-closure-status.ts +35 -0
- package/scripts/build-phase5-external-handoff-arg-flags-lib.ts +21 -0
- package/scripts/build-phase5-external-handoff-arg-handlers-lib.ts +48 -0
- package/scripts/build-phase5-external-handoff-arg-values-lib.ts +59 -0
- package/scripts/build-phase5-external-handoff-args-lib.ts +25 -0
- package/scripts/build-phase5-external-handoff-contract.ts +39 -0
- package/scripts/build-phase5-external-handoff-inputs-lib.ts +86 -0
- package/scripts/build-phase5-external-handoff.ts +71 -0
- package/scripts/build-phase5-support-portal-payload.sh +67 -0
- package/scripts/build-phase8-ready-handoff-summary.sh +66 -0
- package/scripts/check-consumer-ci-auth.ts +64 -0
- package/scripts/check-package-manifest.ts +54 -0
- package/scripts/check-phase5-escalation-ready-to-submit.sh +74 -0
- package/scripts/check-phase5-latest-ready-chain.sh +44 -0
- package/scripts/check-phase8-loop-guard-coverage.sh +44 -0
- package/scripts/check-phase8-loop-guard.sh +81 -0
- package/scripts/check-refactor-progress-single-active.sh +25 -0
- package/scripts/check-validation-docs-hygiene.ts +42 -0
- package/scripts/clean-validation-artifacts-cli-lib.ts +38 -0
- package/scripts/clean-validation-artifacts-lib.ts +64 -0
- package/scripts/clean-validation-artifacts-output-lib.ts +21 -0
- package/scripts/clean-validation-artifacts.ts +42 -0
- package/scripts/close-phase5-escalation-submission.sh +81 -0
- package/scripts/collect-consumer-ci-artifacts-args-lib.ts +61 -0
- package/scripts/collect-consumer-ci-artifacts-contract.ts +54 -0
- package/scripts/collect-consumer-ci-artifacts-gh-command-lib.ts +17 -0
- package/scripts/collect-consumer-ci-artifacts-gh-fetch-lib.ts +45 -0
- package/scripts/collect-consumer-ci-artifacts-gh-lib.ts +5 -0
- package/scripts/collect-consumer-ci-artifacts-gh-run-fetch-lib.ts +56 -0
- package/scripts/collect-consumer-ci-artifacts-markdown-lib.ts +69 -0
- package/scripts/collect-consumer-ci-artifacts.ts +30 -0
- package/scripts/compile-skills-lock-args-lib.ts +53 -0
- package/scripts/compile-skills-lock-runner-lib.ts +48 -0
- package/scripts/compile-skills-lock.ts +9 -0
- package/scripts/consumer-ci-auth-check-contract.ts +39 -0
- package/scripts/consumer-ci-auth-check-gh-lib.ts +54 -0
- package/scripts/consumer-ci-auth-check-lib.ts +15 -0
- package/scripts/consumer-ci-auth-check-markdown-header-status-lib.ts +32 -0
- package/scripts/consumer-ci-auth-check-markdown-json-lib.ts +19 -0
- package/scripts/consumer-ci-auth-check-markdown-lib.ts +30 -0
- package/scripts/consumer-ci-auth-check-markdown-remediation-lib.ts +36 -0
- package/scripts/consumer-ci-auth-check-markdown-sections-lib.ts +6 -0
- package/scripts/consumer-ci-auth-check-parse-lib.ts +65 -0
- package/scripts/consumer-startup-failure-support-bundle-lib.ts +58 -0
- package/scripts/consumer-startup-triage-command-builders-core-lib.ts +5 -0
- package/scripts/consumer-startup-triage-command-builders-core-required-lib.ts +40 -0
- package/scripts/consumer-startup-triage-command-builders-lib.ts +10 -0
- package/scripts/consumer-startup-triage-command-builders-support-bundle-lib.ts +26 -0
- package/scripts/consumer-startup-triage-command-builders-support-followup-lib.ts +53 -0
- package/scripts/consumer-startup-triage-command-builders-support-lib.ts +5 -0
- package/scripts/consumer-startup-triage-command-builders-workflow-lint-lib.ts +45 -0
- package/scripts/consumer-startup-triage-commands-lib.ts +64 -0
- package/scripts/consumer-startup-triage-contract.ts +41 -0
- package/scripts/consumer-startup-triage-lib.ts +9 -0
- package/scripts/consumer-startup-triage-markdown-lib.ts +63 -0
- package/scripts/consumer-startup-triage-outputs-lib.ts +19 -0
- package/scripts/consumer-startup-unblock-arg-setters-lib.ts +34 -0
- package/scripts/consumer-startup-unblock-args-contract.ts +17 -0
- package/scripts/consumer-startup-unblock-args-defaults-lib.ts +17 -0
- package/scripts/consumer-startup-unblock-args-lib.ts +49 -0
- package/scripts/consumer-startup-unblock-auth-lib.ts +16 -0
- package/scripts/consumer-startup-unblock-blockers-lib.ts +65 -0
- package/scripts/consumer-startup-unblock-cli-lib.ts +10 -0
- package/scripts/consumer-startup-unblock-contract.ts +42 -0
- package/scripts/consumer-startup-unblock-input-lib.ts +17 -0
- package/scripts/consumer-startup-unblock-markdown-lib.ts +47 -0
- package/scripts/consumer-startup-unblock-markdown-next-actions-lib.ts +37 -0
- package/scripts/consumer-startup-unblock-markdown-sections-lib.ts +53 -0
- package/scripts/consumer-startup-unblock-parser-lib.ts +24 -0
- package/scripts/consumer-startup-unblock-runner-lib.ts +69 -0
- package/scripts/consumer-startup-unblock-status-lib.ts +7 -0
- package/scripts/consumer-startup-unblock-summary-lib.ts +54 -0
- package/scripts/consumer-support-bundle-args-defaults-lib.ts +11 -0
- package/scripts/consumer-support-bundle-args-values-lib.ts +27 -0
- package/scripts/consumer-support-bundle-contract.ts +61 -0
- package/scripts/consumer-support-bundle-gh-auth-repo-lib.ts +51 -0
- package/scripts/consumer-support-bundle-gh-command-lib.ts +63 -0
- package/scripts/consumer-support-bundle-gh-diagnostics-collector-lib.ts +66 -0
- package/scripts/consumer-support-bundle-gh-diagnostics-fetch-lib.ts +36 -0
- package/scripts/consumer-support-bundle-gh-lib.ts +8 -0
- package/scripts/consumer-support-bundle-gh-loaders-lib.ts +7 -0
- package/scripts/consumer-support-bundle-gh-workflow-runs-lib.ts +30 -0
- package/scripts/consumer-support-bundle-markdown-context-lib.ts +49 -0
- package/scripts/consumer-support-bundle-markdown-lib.ts +44 -0
- package/scripts/consumer-support-bundle-markdown-run-sections-append-lib.ts +47 -0
- package/scripts/consumer-support-bundle-markdown-sections-append-lib.ts +51 -0
- package/scripts/consumer-support-bundle-markdown-sections-core-lib.ts +67 -0
- package/scripts/consumer-support-bundle-markdown-sections-lib.ts +7 -0
- package/scripts/consumer-support-bundle-markdown-sections-run-diagnostics-lib.ts +34 -0
- package/scripts/consumer-support-bundle-markdown-sections-support-payload-lib.ts +60 -0
- package/scripts/consumer-support-bundle-markdown-top-sections-append-lib.ts +55 -0
- package/scripts/consumer-support-bundle-markdown-top-sections-lib.ts +51 -0
- package/scripts/consumer-support-bundle-runner-lib.ts +49 -0
- package/scripts/consumer-support-ticket-cli-arg-setters-lib.ts +30 -0
- package/scripts/consumer-support-ticket-cli-contract.ts +14 -0
- package/scripts/consumer-support-ticket-cli-defaults-lib.ts +14 -0
- package/scripts/consumer-support-ticket-cli-lib.ts +63 -0
- package/scripts/consumer-support-ticket-draft-diagnostics-sections-lib.ts +67 -0
- package/scripts/consumer-support-ticket-draft-lib.ts +36 -0
- package/scripts/consumer-support-ticket-draft-primary-sections-lib.ts +51 -0
- package/scripts/consumer-support-ticket-draft-sections-lib.ts +10 -0
- package/scripts/consumer-support-ticket-lib.ts +3 -0
- package/scripts/consumer-support-ticket-parser-lib.ts +72 -0
- package/scripts/consumer-support-ticket-runner-lib.ts +42 -0
- package/scripts/consumer-workflow-lint-args-lib.ts +56 -0
- package/scripts/consumer-workflow-lint-command-lib.ts +60 -0
- package/scripts/consumer-workflow-lint-contract.ts +14 -0
- package/scripts/consumer-workflow-lint-markdown-lib.ts +39 -0
- package/scripts/consumer-workflow-lint-runner-lib.ts +52 -0
- package/scripts/fill-adapter-external-ide-replay-closeout.sh +90 -0
- package/scripts/framework-menu-action-contract.ts +17 -0
- package/scripts/framework-menu-actions-diagnostics-adapter-lib.ts +31 -0
- package/scripts/framework-menu-actions-diagnostics-ci-lib.ts +40 -0
- package/scripts/framework-menu-actions-diagnostics-maintenance-lib.ts +22 -0
- package/scripts/framework-menu-actions-diagnostics-support-core-lib.ts +40 -0
- package/scripts/framework-menu-actions-diagnostics-support-lib.ts +15 -0
- package/scripts/framework-menu-actions-diagnostics-support-triage-lib.ts +28 -0
- package/scripts/framework-menu-actions-diagnostics.ts +19 -0
- package/scripts/framework-menu-actions-gates-ci-lib.ts +30 -0
- package/scripts/framework-menu-actions-gates-stage-lib.ts +32 -0
- package/scripts/framework-menu-actions-gates-tools-lib.ts +26 -0
- package/scripts/framework-menu-actions-gates.ts +17 -0
- package/scripts/framework-menu-actions-phase5-exec-lib.ts +32 -0
- package/scripts/framework-menu-actions-phase5-exit-lib.ts +16 -0
- package/scripts/framework-menu-actions-phase5-reports-lib.ts +49 -0
- package/scripts/framework-menu-actions-phase5.ts +17 -0
- package/scripts/framework-menu-actions.ts +22 -0
- package/scripts/framework-menu-builders-adapter.ts +29 -0
- package/scripts/framework-menu-builders-consumer-contract.ts +19 -0
- package/scripts/framework-menu-builders-consumer-mock-ab-lib.ts +22 -0
- package/scripts/framework-menu-builders-consumer-triage-lib.ts +31 -0
- package/scripts/framework-menu-builders-consumer.ts +6 -0
- package/scripts/framework-menu-builders-maintenance.ts +24 -0
- package/scripts/framework-menu-builders-phase5-blockers-lib.ts +16 -0
- package/scripts/framework-menu-builders-phase5-closure-lib.ts +46 -0
- package/scripts/framework-menu-builders-phase5-contract.ts +43 -0
- package/scripts/framework-menu-builders-phase5-handoff-lib.ts +38 -0
- package/scripts/framework-menu-builders-phase5-status-lib.ts +24 -0
- package/scripts/framework-menu-builders-phase5.ts +12 -0
- package/scripts/framework-menu-builders-shared-lib.ts +3 -0
- package/scripts/framework-menu-builders.ts +19 -0
- package/scripts/framework-menu-gate-lib.ts +53 -0
- package/scripts/framework-menu-prompt-types.ts +12 -0
- package/scripts/framework-menu-prompts-adapter.ts +50 -0
- package/scripts/framework-menu-prompts-consumer-ci-lib.ts +36 -0
- package/scripts/framework-menu-prompts-consumer-contract.ts +46 -0
- package/scripts/framework-menu-prompts-consumer-startup-triage-lib.ts +69 -0
- package/scripts/framework-menu-prompts-consumer-support-bundle-lib.ts +20 -0
- package/scripts/framework-menu-prompts-consumer-support-ticket-lib.ts +27 -0
- package/scripts/framework-menu-prompts-consumer-unblock-status-lib.ts +33 -0
- package/scripts/framework-menu-prompts-consumer-workflow-lint-lib.ts +27 -0
- package/scripts/framework-menu-prompts-consumer.ts +26 -0
- package/scripts/framework-menu-prompts-phase5-blockers-lib.ts +24 -0
- package/scripts/framework-menu-prompts-phase5-closure-lib.ts +17 -0
- package/scripts/framework-menu-prompts-phase5-closure-live-lib.ts +51 -0
- package/scripts/framework-menu-prompts-phase5-closure-mock-lib.ts +23 -0
- package/scripts/framework-menu-prompts-phase5-closure-shared-lib.ts +24 -0
- package/scripts/framework-menu-prompts-phase5-contract.ts +48 -0
- package/scripts/framework-menu-prompts-phase5-handoff-lib.ts +54 -0
- package/scripts/framework-menu-prompts-phase5-mock-ab-lib.ts +36 -0
- package/scripts/framework-menu-prompts-phase5-status-lib.ts +31 -0
- package/scripts/framework-menu-prompts-phase5.ts +16 -0
- package/scripts/framework-menu-prompts.ts +32 -0
- package/scripts/framework-menu-runner-common.ts +13 -0
- package/scripts/framework-menu-runner-constants.ts +3 -0
- package/scripts/framework-menu-runner-evidence-lib.ts +14 -0
- package/scripts/framework-menu-runner-git-lib.ts +13 -0
- package/scripts/framework-menu-runner-path-lib.ts +12 -0
- package/scripts/framework-menu-runner-process-lib.ts +27 -0
- package/scripts/framework-menu-runners-adapter-contract.ts +13 -0
- package/scripts/framework-menu-runners-adapter-readiness-lib.ts +20 -0
- package/scripts/framework-menu-runners-adapter-real-session-lib.ts +20 -0
- package/scripts/framework-menu-runners-adapter-session-lib.ts +19 -0
- package/scripts/framework-menu-runners-adapter.ts +9 -0
- package/scripts/framework-menu-runners-consumer-artifacts-lib.ts +11 -0
- package/scripts/framework-menu-runners-consumer-auth-lib.ts +11 -0
- package/scripts/framework-menu-runners-consumer-contract.ts +55 -0
- package/scripts/framework-menu-runners-consumer-exec-lib.ts +13 -0
- package/scripts/framework-menu-runners-consumer-mock-ab-lib.ts +24 -0
- package/scripts/framework-menu-runners-consumer-startup-triage-lib.ts +24 -0
- package/scripts/framework-menu-runners-consumer-support-bundle-lib.ts +11 -0
- package/scripts/framework-menu-runners-consumer-support-ticket-lib.ts +20 -0
- package/scripts/framework-menu-runners-consumer-unblock-lib.ts +22 -0
- package/scripts/framework-menu-runners-consumer-workflow-lib.ts +18 -0
- package/scripts/framework-menu-runners-consumer.ts +21 -0
- package/scripts/framework-menu-runners-phase5-blockers-lib.ts +18 -0
- package/scripts/framework-menu-runners-phase5-closure-lib.ts +25 -0
- package/scripts/framework-menu-runners-phase5-contract.ts +39 -0
- package/scripts/framework-menu-runners-phase5-exec-lib.ts +25 -0
- package/scripts/framework-menu-runners-phase5-handoff-lib.ts +25 -0
- package/scripts/framework-menu-runners-phase5-status-lib.ts +20 -0
- package/scripts/framework-menu-runners-phase5.ts +12 -0
- package/scripts/framework-menu-runners-validation-cleanup-lib.ts +31 -0
- package/scripts/framework-menu-runners-validation-docs-lib.ts +20 -0
- package/scripts/framework-menu-runners-validation-skills-lib.ts +11 -0
- package/scripts/framework-menu-runners-validation.ts +4 -0
- package/scripts/framework-menu-runners.ts +37 -0
- package/scripts/framework-menu-skills-lib.ts +26 -0
- package/scripts/framework-menu.cli.ts +3 -0
- package/scripts/framework-menu.ts +67 -0
- package/scripts/lint-consumer-workflows.ts +29 -0
- package/scripts/mark-phase5-escalation-submitted.sh +49 -0
- package/scripts/mark-phase8-followup-posted-now.sh +33 -0
- package/scripts/mark-phase8-followup-replied-now.sh +52 -0
- package/scripts/mark-phase8-support-followup-state.sh +89 -0
- package/scripts/mock-consumer-ab-blockers-lib.ts +36 -0
- package/scripts/mock-consumer-ab-cli-arg-setters-lib.ts +46 -0
- package/scripts/mock-consumer-ab-cli-defaults-lib.ts +19 -0
- package/scripts/mock-consumer-ab-cli-lib.ts +46 -0
- package/scripts/mock-consumer-ab-contract.ts +30 -0
- package/scripts/mock-consumer-ab-evidence-lib.ts +50 -0
- package/scripts/mock-consumer-ab-markdown-assertions-lib.ts +24 -0
- package/scripts/mock-consumer-ab-markdown-blockers-lib.ts +9 -0
- package/scripts/mock-consumer-ab-markdown-contract.ts +16 -0
- package/scripts/mock-consumer-ab-markdown-header-inputs-lib.ts +21 -0
- package/scripts/mock-consumer-ab-markdown-lib.ts +24 -0
- package/scripts/mock-consumer-ab-markdown-next-actions-lib.ts +22 -0
- package/scripts/mock-consumer-ab-markdown-sections-lib.ts +21 -0
- package/scripts/mock-consumer-ab-report-lib.ts +12 -0
- package/scripts/mock-consumer-ab-runner-lib.ts +51 -0
- package/scripts/mock-consumer-smoke-contract.ts +14 -0
- package/scripts/mock-consumer-smoke-lib.ts +3 -0
- package/scripts/mock-consumer-smoke-summary-lib.ts +59 -0
- package/scripts/mock-consumer-smoke-verdict-lib.ts +27 -0
- package/scripts/mock-consumer-startup-triage-arg-flags-lib.ts +13 -0
- package/scripts/mock-consumer-startup-triage-arg-values-lib.ts +35 -0
- package/scripts/mock-consumer-startup-triage-cli-contract.ts +7 -0
- package/scripts/mock-consumer-startup-triage-cli-lib.ts +56 -0
- package/scripts/mock-consumer-startup-triage-lib.ts +2 -0
- package/scripts/mock-consumer-startup-triage-markdown-lib.ts +57 -0
- package/scripts/mock-consumer-startup-unblock-markdown-lib.ts +38 -0
- package/scripts/package-install-smoke-command-lib.ts +67 -0
- package/scripts/package-install-smoke-consumer-git-lib.ts +10 -0
- package/scripts/package-install-smoke-consumer-git-payload-lib.ts +45 -0
- package/scripts/package-install-smoke-consumer-git-repo-lib.ts +49 -0
- package/scripts/package-install-smoke-consumer-npm-lib.ts +47 -0
- package/scripts/package-install-smoke-consumer-repo-setup-lib.ts +31 -0
- package/scripts/package-install-smoke-contract.ts +6 -0
- package/scripts/package-install-smoke-execution-lib.ts +73 -0
- package/scripts/package-install-smoke-execution-steps-lib.ts +46 -0
- package/scripts/package-install-smoke-execution-summary-lib.ts +51 -0
- package/scripts/package-install-smoke-file-lib.ts +33 -0
- package/scripts/package-install-smoke-fixtures-content-lib.ts +57 -0
- package/scripts/package-install-smoke-fixtures-lib.ts +41 -0
- package/scripts/package-install-smoke-fixtures-write-lib.ts +14 -0
- package/scripts/package-install-smoke-gate-lib.ts +64 -0
- package/scripts/package-install-smoke-lib.ts +3 -0
- package/scripts/package-install-smoke-lifecycle-lib.ts +91 -0
- package/scripts/package-install-smoke-mode-lib.ts +31 -0
- package/scripts/package-install-smoke-repo-setup-lib.ts +2 -0
- package/scripts/package-install-smoke-runner-common.ts +12 -0
- package/scripts/package-install-smoke-tarball-lib.ts +34 -0
- package/scripts/package-install-smoke-workspace-contract.ts +11 -0
- package/scripts/package-install-smoke-workspace-factory-lib.ts +38 -0
- package/scripts/package-install-smoke-workspace-lib.ts +7 -0
- package/scripts/package-install-smoke-workspace-report-lib.ts +44 -0
- package/scripts/package-install-smoke.ts +7 -0
- package/scripts/package-manifest-lib.ts +44 -0
- package/scripts/phase5-blockers-contract.ts +36 -0
- package/scripts/phase5-blockers-detected-blockers-lib.ts +35 -0
- package/scripts/phase5-blockers-markdown-header-inputs-signals-lib.ts +48 -0
- package/scripts/phase5-blockers-markdown-lib.ts +51 -0
- package/scripts/phase5-blockers-markdown-list-utils-lib.ts +13 -0
- package/scripts/phase5-blockers-markdown-next-actions-blocked-lib.ts +46 -0
- package/scripts/phase5-blockers-markdown-next-actions-lib.ts +29 -0
- package/scripts/phase5-blockers-markdown-next-actions-ready-lib.ts +13 -0
- package/scripts/phase5-blockers-markdown-sections-lib.ts +7 -0
- package/scripts/phase5-blockers-markdown-static-sections-lib.ts +26 -0
- package/scripts/phase5-blockers-missing-inputs-lib.ts +16 -0
- package/scripts/phase5-blockers-parser-adapter-lib.ts +44 -0
- package/scripts/phase5-blockers-parser-consumer-lib.ts +32 -0
- package/scripts/phase5-blockers-parser-lib.ts +2 -0
- package/scripts/phase5-blockers-readiness-arg-flags-lib.ts +13 -0
- package/scripts/phase5-blockers-readiness-arg-values-lib.ts +27 -0
- package/scripts/phase5-blockers-readiness-cli-contract.ts +6 -0
- package/scripts/phase5-blockers-readiness-cli-lib.ts +55 -0
- package/scripts/phase5-blockers-readiness-input-lib.ts +17 -0
- package/scripts/phase5-blockers-readiness-lib.ts +8 -0
- package/scripts/phase5-blockers-summary-lib.ts +48 -0
- package/scripts/phase5-execution-closure-commands-lib.ts +32 -0
- package/scripts/phase5-execution-closure-lib.ts +2 -0
- package/scripts/phase5-execution-closure-outputs-lib.ts +25 -0
- package/scripts/phase5-execution-closure-plan-adapter-commands-lib.ts +41 -0
- package/scripts/phase5-execution-closure-plan-adapter-lib.ts +25 -0
- package/scripts/phase5-execution-closure-plan-consumer-lib.ts +5 -0
- package/scripts/phase5-execution-closure-plan-consumer-preflight-lib.ts +58 -0
- package/scripts/phase5-execution-closure-plan-consumer-triage-lib.ts +62 -0
- package/scripts/phase5-execution-closure-plan-contract.ts +42 -0
- package/scripts/phase5-execution-closure-plan-lib.ts +7 -0
- package/scripts/phase5-execution-closure-plan-phase5-args-lib.ts +52 -0
- package/scripts/phase5-execution-closure-plan-phase5-lib.ts +37 -0
- package/scripts/phase5-execution-closure-plan-validation-lib.ts +15 -0
- package/scripts/phase5-execution-closure-report-contract.ts +22 -0
- package/scripts/phase5-execution-closure-report-executions-lib.ts +35 -0
- package/scripts/phase5-execution-closure-report-header-lib.ts +38 -0
- package/scripts/phase5-execution-closure-report-lib.ts +31 -0
- package/scripts/phase5-execution-closure-report-next-actions-lib.ts +19 -0
- package/scripts/phase5-execution-closure-report-sections-lib.ts +51 -0
- package/scripts/phase5-execution-closure-runner-arg-flags-lib.ts +32 -0
- package/scripts/phase5-execution-closure-runner-arg-handlers-lib.ts +33 -0
- package/scripts/phase5-execution-closure-runner-arg-value-handlers-lib.ts +62 -0
- package/scripts/phase5-execution-closure-runner-arg-values-lib.ts +39 -0
- package/scripts/phase5-execution-closure-runner-contract.ts +31 -0
- package/scripts/phase5-execution-closure-runner-exec-command-lib.ts +20 -0
- package/scripts/phase5-execution-closure-runner-exec-error-lib.ts +32 -0
- package/scripts/phase5-execution-closure-runner-exec-lib.ts +35 -0
- package/scripts/phase5-execution-closure-runner-lib.ts +8 -0
- package/scripts/phase5-execution-closure-runner-mappers-lib.ts +30 -0
- package/scripts/phase5-execution-closure-runner-options-normalizer-lib.ts +19 -0
- package/scripts/phase5-execution-closure-runner-parse-lib.ts +23 -0
- package/scripts/phase5-execution-closure-runner-plan-lib.ts +14 -0
- package/scripts/phase5-execution-closure-runner-report-writer-lib.ts +12 -0
- package/scripts/phase5-execution-closure-status-arg-flags-lib.ts +13 -0
- package/scripts/phase5-execution-closure-status-arg-values-lib.ts +35 -0
- package/scripts/phase5-execution-closure-status-blockers-lib.ts +47 -0
- package/scripts/phase5-execution-closure-status-cli-contract.ts +24 -0
- package/scripts/phase5-execution-closure-status-cli-input-lib.ts +17 -0
- package/scripts/phase5-execution-closure-status-cli-lib.ts +10 -0
- package/scripts/phase5-execution-closure-status-cli-parse-lib.ts +59 -0
- package/scripts/phase5-execution-closure-status-contract.ts +48 -0
- package/scripts/phase5-execution-closure-status-lib.ts +8 -0
- package/scripts/phase5-execution-closure-status-markdown-lib.ts +22 -0
- package/scripts/phase5-execution-closure-status-markdown-list-lib.ts +16 -0
- package/scripts/phase5-execution-closure-status-markdown-next-actions-lib.ts +24 -0
- package/scripts/phase5-execution-closure-status-markdown-sections-lib.ts +7 -0
- package/scripts/phase5-execution-closure-status-markdown-static-sections-lib.ts +58 -0
- package/scripts/phase5-execution-closure-status-missing-inputs-lib.ts +19 -0
- package/scripts/phase5-execution-closure-status-parser-lib.ts +4 -0
- package/scripts/phase5-execution-closure-status-summary-helpers-lib.ts +6 -0
- package/scripts/phase5-execution-closure-status-summary-lib.ts +34 -0
- package/scripts/phase5-execution-closure-status-verdict-lib.ts +11 -0
- package/scripts/phase5-external-handoff-contract.ts +51 -0
- package/scripts/phase5-external-handoff-inputs-artifacts-lib.ts +45 -0
- package/scripts/phase5-external-handoff-lib.ts +3 -0
- package/scripts/phase5-external-handoff-markdown-core-sections-lib.ts +70 -0
- package/scripts/phase5-external-handoff-markdown-header-lib.ts +15 -0
- package/scripts/phase5-external-handoff-markdown-lib.ts +44 -0
- package/scripts/phase5-external-handoff-markdown-list-lib.ts +16 -0
- package/scripts/phase5-external-handoff-markdown-list-sections-lib.ts +54 -0
- package/scripts/phase5-external-handoff-markdown-next-actions-lib.ts +27 -0
- package/scripts/phase5-external-handoff-markdown-sections-append-lib.ts +69 -0
- package/scripts/phase5-external-handoff-markdown-sections-lib.ts +12 -0
- package/scripts/phase5-external-handoff-summary-helpers-lib.ts +9 -0
- package/scripts/phase5-external-handoff-summary-lib.ts +46 -0
- package/scripts/phase5-external-handoff-verdict-evaluators-lib.ts +67 -0
- package/scripts/prepare-adapter-external-ide-replay-closeout-auto.sh +100 -0
- package/scripts/prepare-phase5-escalation-submission.sh +21 -0
- package/scripts/refresh-phase5-latest-escalation.sh +94 -0
- package/scripts/run-phase5-execution-closure.ts +58 -0
- package/scripts/run-phase5-post-support-refresh.sh +25 -0
- package/scripts/run-phase8-after-billing-reactivation.sh +31 -0
- package/scripts/run-phase8-autopilot.sh +42 -0
- package/scripts/run-phase8-close-ready.sh +38 -0
- package/scripts/run-phase8-doctor.sh +61 -0
- package/scripts/run-phase8-next-step.sh +39 -0
- package/scripts/run-phase8-status-pack.sh +35 -0
- package/scripts/run-phase8-tick.sh +35 -0
- package/scripts/sync-codex-skills.sh +40 -0
- package/scripts/sync-phase5-latest-docs.sh +119 -0
- package/scripts/validation-docs-hygiene-lib.ts +46 -0
- package/skills.lock.json +178 -0
- package/skills.sources.json +33 -0
- package/tsconfig.json +39 -0
|
@@ -0,0 +1,1304 @@
|
|
|
1
|
+
# AST Heuristics Rule Pack
|
|
2
|
+
|
|
3
|
+
## Pack
|
|
4
|
+
|
|
5
|
+
-
|
|
6
|
+
-
|
|
7
|
+
-
|
|
8
|
+
-
|
|
9
|
+
- `astHeuristicsRuleSet@0.4.0`
|
|
10
|
+
-
|
|
11
|
+
-
|
|
12
|
+
-
|
|
13
|
+
-
|
|
14
|
+
- Platform: `frontend`, `backend`, `ios`, `android` (heuristic signals)
|
|
15
|
+
|
|
16
|
+
## Source
|
|
17
|
+
|
|
18
|
+
-
|
|
19
|
+
-
|
|
20
|
+
-
|
|
21
|
+
-
|
|
22
|
+
- `core/rules/presets/astHeuristicsRuleSet.ts`
|
|
23
|
+
|
|
24
|
+
## Activation
|
|
25
|
+
|
|
26
|
+
-
|
|
27
|
+
-
|
|
28
|
+
-
|
|
29
|
+
-
|
|
30
|
+
- Disabled by default.
|
|
31
|
+
-
|
|
32
|
+
-
|
|
33
|
+
-
|
|
34
|
+
-
|
|
35
|
+
- Enabled when `PUMUKI_ENABLE_AST_HEURISTICS` is truthy (`1`, `true`, `yes`, `on`).
|
|
36
|
+
|
|
37
|
+
## Evaluation model
|
|
38
|
+
|
|
39
|
+
-
|
|
40
|
+
-
|
|
41
|
+
-
|
|
42
|
+
-
|
|
43
|
+
- Semantic and token-aware extractors emit typed `Heuristic` facts.
|
|
44
|
+
-
|
|
45
|
+
-
|
|
46
|
+
-
|
|
47
|
+
-
|
|
48
|
+
- The shared evaluator matches those facts through declarative `Heuristic` conditions.
|
|
49
|
+
-
|
|
50
|
+
-
|
|
51
|
+
-
|
|
52
|
+
-
|
|
53
|
+
- Findings are emitted by standard rule evaluation flow and included in `.ai_evidence.json`.
|
|
54
|
+
|
|
55
|
+
## Stage severity maturity
|
|
56
|
+
|
|
57
|
+
-
|
|
58
|
+
-
|
|
59
|
+
-
|
|
60
|
+
-
|
|
61
|
+
- `PRE_COMMIT` keeps all heuristic findings at `WARN`.
|
|
62
|
+
-
|
|
63
|
+
-
|
|
64
|
+
-
|
|
65
|
+
-
|
|
66
|
+
- `PRE_PUSH` and `CI` promote selected high-confidence heuristic rules to `ERROR`:
|
|
67
|
+
-
|
|
68
|
+
-
|
|
69
|
+
-
|
|
70
|
+
-
|
|
71
|
+
- `heuristics.ts.console-log.ast`
|
|
72
|
+
-
|
|
73
|
+
-
|
|
74
|
+
-
|
|
75
|
+
-
|
|
76
|
+
- `heuristics.ts.console-error.ast`
|
|
77
|
+
-
|
|
78
|
+
-
|
|
79
|
+
-
|
|
80
|
+
-
|
|
81
|
+
- `heuristics.ts.eval.ast`
|
|
82
|
+
-
|
|
83
|
+
-
|
|
84
|
+
-
|
|
85
|
+
-
|
|
86
|
+
- `heuristics.ts.function-constructor.ast`
|
|
87
|
+
-
|
|
88
|
+
-
|
|
89
|
+
-
|
|
90
|
+
-
|
|
91
|
+
- `heuristics.ts.set-timeout-string.ast`
|
|
92
|
+
-
|
|
93
|
+
-
|
|
94
|
+
-
|
|
95
|
+
-
|
|
96
|
+
- `heuristics.ts.set-interval-string.ast`
|
|
97
|
+
-
|
|
98
|
+
-
|
|
99
|
+
-
|
|
100
|
+
-
|
|
101
|
+
- `heuristics.ts.new-promise-async.ast`
|
|
102
|
+
-
|
|
103
|
+
-
|
|
104
|
+
-
|
|
105
|
+
-
|
|
106
|
+
- `heuristics.ts.with-statement.ast`
|
|
107
|
+
-
|
|
108
|
+
-
|
|
109
|
+
-
|
|
110
|
+
-
|
|
111
|
+
- `heuristics.ts.process-exit.ast`
|
|
112
|
+
-
|
|
113
|
+
-
|
|
114
|
+
-
|
|
115
|
+
-
|
|
116
|
+
- `heuristics.ts.delete-operator.ast`
|
|
117
|
+
-
|
|
118
|
+
-
|
|
119
|
+
-
|
|
120
|
+
-
|
|
121
|
+
- `heuristics.ts.inner-html.ast`
|
|
122
|
+
-
|
|
123
|
+
-
|
|
124
|
+
-
|
|
125
|
+
-
|
|
126
|
+
- `heuristics.ts.document-write.ast`
|
|
127
|
+
-
|
|
128
|
+
-
|
|
129
|
+
-
|
|
130
|
+
-
|
|
131
|
+
- `heuristics.ts.insert-adjacent-html.ast`
|
|
132
|
+
-
|
|
133
|
+
-
|
|
134
|
+
-
|
|
135
|
+
-
|
|
136
|
+
- `heuristics.ts.child-process-import.ast`
|
|
137
|
+
-
|
|
138
|
+
-
|
|
139
|
+
-
|
|
140
|
+
-
|
|
141
|
+
- `heuristics.ts.process-env-mutation.ast`
|
|
142
|
+
- `heuristics.ts.hardcoded-secret-token.ast`
|
|
143
|
+
- `heuristics.ts.weak-crypto-hash.ast`
|
|
144
|
+
- `heuristics.ts.weak-token-randomuuid.ast`
|
|
145
|
+
- `heuristics.ts.jwt-decode-without-verify.ast`
|
|
146
|
+
- `heuristics.ts.jwt-verify-ignore-expiration.ast`
|
|
147
|
+
- `heuristics.ts.jwt-sign-no-expiration.ast`
|
|
148
|
+
- `heuristics.ts.tls-reject-unauthorized-false.ast`
|
|
149
|
+
- `heuristics.ts.tls-env-override.ast`
|
|
150
|
+
- `heuristics.ts.child-process-shell-true.ast`
|
|
151
|
+
- `heuristics.ts.vm-dynamic-code-execution.ast`
|
|
152
|
+
- `heuristics.ts.dynamic-shell-invocation.ast`
|
|
153
|
+
- `heuristics.ts.insecure-token-math-random.ast`
|
|
154
|
+
- `heuristics.ts.insecure-token-date-now.ast`
|
|
155
|
+
- `heuristics.ts.buffer-alloc-unsafe.ast`
|
|
156
|
+
- `heuristics.ts.buffer-alloc-unsafe-slow.ast`
|
|
157
|
+
-
|
|
158
|
+
-
|
|
159
|
+
-
|
|
160
|
+
-
|
|
161
|
+
- `heuristics.ts.fs-write-file-sync.ast`
|
|
162
|
+
-
|
|
163
|
+
-
|
|
164
|
+
-
|
|
165
|
+
-
|
|
166
|
+
- `heuristics.ts.fs-rm-sync.ast`
|
|
167
|
+
- `heuristics.ts.fs-rename-sync.ast`
|
|
168
|
+
-
|
|
169
|
+
-
|
|
170
|
+
-
|
|
171
|
+
-
|
|
172
|
+
- `heuristics.ts.fs-mkdir-sync.ast`
|
|
173
|
+
-
|
|
174
|
+
-
|
|
175
|
+
-
|
|
176
|
+
-
|
|
177
|
+
- `heuristics.ts.fs-readdir-sync.ast`
|
|
178
|
+
-
|
|
179
|
+
-
|
|
180
|
+
-
|
|
181
|
+
-
|
|
182
|
+
- `heuristics.ts.fs-read-file-sync.ast`
|
|
183
|
+
- `heuristics.ts.fs-read-sync.ast`
|
|
184
|
+
-
|
|
185
|
+
-
|
|
186
|
+
-
|
|
187
|
+
-
|
|
188
|
+
- `heuristics.ts.fs-stat-sync.ast`
|
|
189
|
+
- `heuristics.ts.fs-statfs-sync.ast`
|
|
190
|
+
-
|
|
191
|
+
-
|
|
192
|
+
-
|
|
193
|
+
-
|
|
194
|
+
- `heuristics.ts.fs-realpath-sync.ast`
|
|
195
|
+
-
|
|
196
|
+
-
|
|
197
|
+
-
|
|
198
|
+
-
|
|
199
|
+
- `heuristics.ts.fs-lstat-sync.ast`
|
|
200
|
+
-
|
|
201
|
+
-
|
|
202
|
+
-
|
|
203
|
+
-
|
|
204
|
+
- `heuristics.ts.fs-exists-sync.ast`
|
|
205
|
+
- `heuristics.ts.fs-access-sync.ast`
|
|
206
|
+
- `heuristics.ts.fs-utimes-sync.ast`
|
|
207
|
+
-
|
|
208
|
+
-
|
|
209
|
+
-
|
|
210
|
+
-
|
|
211
|
+
- `heuristics.ts.fs-chmod-sync.ast`
|
|
212
|
+
-
|
|
213
|
+
-
|
|
214
|
+
-
|
|
215
|
+
-
|
|
216
|
+
- `heuristics.ts.fs-chown-sync.ast`
|
|
217
|
+
-
|
|
218
|
+
-
|
|
219
|
+
-
|
|
220
|
+
-
|
|
221
|
+
- `heuristics.ts.fs-fchown-sync.ast`
|
|
222
|
+
- `heuristics.ts.fs-fchmod-sync.ast`
|
|
223
|
+
- `heuristics.ts.fs-fstat-sync.ast`
|
|
224
|
+
- `heuristics.ts.fs-ftruncate-sync.ast`
|
|
225
|
+
- `heuristics.ts.fs-readv-sync.ast`
|
|
226
|
+
- `heuristics.ts.fs-writev-sync.ast`
|
|
227
|
+
- `heuristics.ts.fs-write-sync.ast`
|
|
228
|
+
- `heuristics.ts.fs-fsync-sync.ast`
|
|
229
|
+
- `heuristics.ts.fs-fdatasync-sync.ast`
|
|
230
|
+
-
|
|
231
|
+
-
|
|
232
|
+
-
|
|
233
|
+
-
|
|
234
|
+
- `heuristics.ts.child-process-exec-sync.ast`
|
|
235
|
+
-
|
|
236
|
+
-
|
|
237
|
+
-
|
|
238
|
+
-
|
|
239
|
+
- `heuristics.ts.child-process-exec.ast`
|
|
240
|
+
-
|
|
241
|
+
-
|
|
242
|
+
-
|
|
243
|
+
-
|
|
244
|
+
- `heuristics.ts.child-process-spawn-sync.ast`
|
|
245
|
+
-
|
|
246
|
+
-
|
|
247
|
+
-
|
|
248
|
+
-
|
|
249
|
+
- `heuristics.ts.child-process-spawn.ast`
|
|
250
|
+
-
|
|
251
|
+
-
|
|
252
|
+
-
|
|
253
|
+
-
|
|
254
|
+
- `heuristics.ts.child-process-fork.ast`
|
|
255
|
+
-
|
|
256
|
+
-
|
|
257
|
+
-
|
|
258
|
+
-
|
|
259
|
+
- `heuristics.ts.child-process-exec-file-sync.ast`
|
|
260
|
+
-
|
|
261
|
+
-
|
|
262
|
+
-
|
|
263
|
+
-
|
|
264
|
+
- `heuristics.ts.child-process-exec-file-untrusted-args.ast`
|
|
265
|
+
-
|
|
266
|
+
-
|
|
267
|
+
-
|
|
268
|
+
-
|
|
269
|
+
-
|
|
270
|
+
- `heuristics.ts.child-process-exec-file.ast`
|
|
271
|
+
-
|
|
272
|
+
-
|
|
273
|
+
-
|
|
274
|
+
-
|
|
275
|
+
- `heuristics.ts.fs-append-file-sync.ast`
|
|
276
|
+
-
|
|
277
|
+
-
|
|
278
|
+
-
|
|
279
|
+
-
|
|
280
|
+
- `heuristics.ts.fs-promises-write-file.ast`
|
|
281
|
+
-
|
|
282
|
+
-
|
|
283
|
+
-
|
|
284
|
+
-
|
|
285
|
+
- `heuristics.ts.fs-promises-append-file.ast`
|
|
286
|
+
-
|
|
287
|
+
-
|
|
288
|
+
-
|
|
289
|
+
-
|
|
290
|
+
- `heuristics.ts.fs-promises-rm.ast`
|
|
291
|
+
-
|
|
292
|
+
-
|
|
293
|
+
-
|
|
294
|
+
-
|
|
295
|
+
- `heuristics.ts.fs-promises-unlink.ast`
|
|
296
|
+
-
|
|
297
|
+
-
|
|
298
|
+
-
|
|
299
|
+
-
|
|
300
|
+
- `heuristics.ts.fs-promises-read-file.ast`
|
|
301
|
+
-
|
|
302
|
+
-
|
|
303
|
+
-
|
|
304
|
+
-
|
|
305
|
+
- `heuristics.ts.fs-promises-readdir.ast`
|
|
306
|
+
-
|
|
307
|
+
-
|
|
308
|
+
-
|
|
309
|
+
-
|
|
310
|
+
- `heuristics.ts.fs-promises-mkdir.ast`
|
|
311
|
+
-
|
|
312
|
+
-
|
|
313
|
+
-
|
|
314
|
+
-
|
|
315
|
+
- `heuristics.ts.fs-promises-stat.ast`
|
|
316
|
+
-
|
|
317
|
+
-
|
|
318
|
+
-
|
|
319
|
+
-
|
|
320
|
+
- `heuristics.ts.fs-promises-copy-file.ast`
|
|
321
|
+
-
|
|
322
|
+
-
|
|
323
|
+
-
|
|
324
|
+
-
|
|
325
|
+
- `heuristics.ts.fs-promises-rename.ast`
|
|
326
|
+
-
|
|
327
|
+
-
|
|
328
|
+
-
|
|
329
|
+
-
|
|
330
|
+
- `heuristics.ts.fs-promises-access.ast`
|
|
331
|
+
-
|
|
332
|
+
-
|
|
333
|
+
-
|
|
334
|
+
-
|
|
335
|
+
- `heuristics.ts.fs-promises-chmod.ast`
|
|
336
|
+
-
|
|
337
|
+
-
|
|
338
|
+
-
|
|
339
|
+
-
|
|
340
|
+
- `heuristics.ts.fs-promises-chown.ast`
|
|
341
|
+
-
|
|
342
|
+
-
|
|
343
|
+
-
|
|
344
|
+
-
|
|
345
|
+
- `heuristics.ts.fs-promises-utimes.ast`
|
|
346
|
+
-
|
|
347
|
+
-
|
|
348
|
+
-
|
|
349
|
+
-
|
|
350
|
+
- `heuristics.ts.fs-promises-lstat.ast`
|
|
351
|
+
-
|
|
352
|
+
-
|
|
353
|
+
-
|
|
354
|
+
-
|
|
355
|
+
- `heuristics.ts.fs-promises-realpath.ast`
|
|
356
|
+
-
|
|
357
|
+
-
|
|
358
|
+
-
|
|
359
|
+
-
|
|
360
|
+
- `heuristics.ts.fs-promises-symlink.ast`
|
|
361
|
+
-
|
|
362
|
+
-
|
|
363
|
+
-
|
|
364
|
+
-
|
|
365
|
+
- `heuristics.ts.fs-promises-link.ast`
|
|
366
|
+
-
|
|
367
|
+
-
|
|
368
|
+
-
|
|
369
|
+
-
|
|
370
|
+
- `heuristics.ts.fs-promises-readlink.ast`
|
|
371
|
+
-
|
|
372
|
+
-
|
|
373
|
+
-
|
|
374
|
+
-
|
|
375
|
+
- `heuristics.ts.fs-promises-open.ast`
|
|
376
|
+
-
|
|
377
|
+
-
|
|
378
|
+
-
|
|
379
|
+
-
|
|
380
|
+
- `heuristics.ts.fs-promises-opendir.ast`
|
|
381
|
+
-
|
|
382
|
+
-
|
|
383
|
+
-
|
|
384
|
+
-
|
|
385
|
+
- `heuristics.ts.fs-promises-cp.ast`
|
|
386
|
+
-
|
|
387
|
+
-
|
|
388
|
+
-
|
|
389
|
+
-
|
|
390
|
+
- `heuristics.ts.fs-promises-mkdtemp.ast`
|
|
391
|
+
-
|
|
392
|
+
-
|
|
393
|
+
-
|
|
394
|
+
-
|
|
395
|
+
- `heuristics.ts.fs-utimes-callback.ast`
|
|
396
|
+
-
|
|
397
|
+
-
|
|
398
|
+
-
|
|
399
|
+
-
|
|
400
|
+
- `heuristics.ts.fs-watch-callback.ast`
|
|
401
|
+
-
|
|
402
|
+
-
|
|
403
|
+
-
|
|
404
|
+
-
|
|
405
|
+
- `heuristics.ts.fs-watch-file-callback.ast`
|
|
406
|
+
-
|
|
407
|
+
-
|
|
408
|
+
-
|
|
409
|
+
-
|
|
410
|
+
- `heuristics.ts.fs-unwatch-file-callback.ast`
|
|
411
|
+
-
|
|
412
|
+
-
|
|
413
|
+
-
|
|
414
|
+
-
|
|
415
|
+
- `heuristics.ts.fs-read-file-callback.ast`
|
|
416
|
+
-
|
|
417
|
+
-
|
|
418
|
+
-
|
|
419
|
+
-
|
|
420
|
+
- `heuristics.ts.fs-exists-callback.ast`
|
|
421
|
+
-
|
|
422
|
+
-
|
|
423
|
+
-
|
|
424
|
+
-
|
|
425
|
+
- `heuristics.ts.fs-write-file-callback.ast`
|
|
426
|
+
-
|
|
427
|
+
-
|
|
428
|
+
-
|
|
429
|
+
-
|
|
430
|
+
- `heuristics.ts.fs-append-file-callback.ast`
|
|
431
|
+
-
|
|
432
|
+
-
|
|
433
|
+
-
|
|
434
|
+
-
|
|
435
|
+
- `heuristics.ts.fs-readdir-callback.ast`
|
|
436
|
+
-
|
|
437
|
+
-
|
|
438
|
+
-
|
|
439
|
+
-
|
|
440
|
+
- `heuristics.ts.fs-mkdir-callback.ast`
|
|
441
|
+
-
|
|
442
|
+
-
|
|
443
|
+
-
|
|
444
|
+
-
|
|
445
|
+
- `heuristics.ts.fs-rmdir-callback.ast`
|
|
446
|
+
- `heuristics.ts.fs-rmdir-sync.ast`
|
|
447
|
+
-
|
|
448
|
+
-
|
|
449
|
+
-
|
|
450
|
+
-
|
|
451
|
+
- `heuristics.ts.fs-rm-callback.ast`
|
|
452
|
+
-
|
|
453
|
+
-
|
|
454
|
+
-
|
|
455
|
+
-
|
|
456
|
+
- `heuristics.ts.fs-rename-callback.ast`
|
|
457
|
+
-
|
|
458
|
+
-
|
|
459
|
+
-
|
|
460
|
+
-
|
|
461
|
+
- `heuristics.ts.fs-copy-file-callback.ast`
|
|
462
|
+
- `heuristics.ts.fs-copy-file-sync.ast`
|
|
463
|
+
-
|
|
464
|
+
-
|
|
465
|
+
-
|
|
466
|
+
-
|
|
467
|
+
- `heuristics.ts.fs-stat-callback.ast`
|
|
468
|
+
-
|
|
469
|
+
-
|
|
470
|
+
-
|
|
471
|
+
-
|
|
472
|
+
- `heuristics.ts.fs-statfs-callback.ast`
|
|
473
|
+
-
|
|
474
|
+
-
|
|
475
|
+
-
|
|
476
|
+
-
|
|
477
|
+
- `heuristics.ts.fs-lstat-callback.ast`
|
|
478
|
+
-
|
|
479
|
+
-
|
|
480
|
+
-
|
|
481
|
+
-
|
|
482
|
+
- `heuristics.ts.fs-realpath-callback.ast`
|
|
483
|
+
-
|
|
484
|
+
-
|
|
485
|
+
-
|
|
486
|
+
-
|
|
487
|
+
- `heuristics.ts.fs-access-callback.ast`
|
|
488
|
+
-
|
|
489
|
+
-
|
|
490
|
+
-
|
|
491
|
+
-
|
|
492
|
+
- `heuristics.ts.fs-chmod-callback.ast`
|
|
493
|
+
-
|
|
494
|
+
-
|
|
495
|
+
-
|
|
496
|
+
-
|
|
497
|
+
- `heuristics.ts.fs-chown-callback.ast`
|
|
498
|
+
-
|
|
499
|
+
-
|
|
500
|
+
-
|
|
501
|
+
-
|
|
502
|
+
- `heuristics.ts.fs-lchown-callback.ast`
|
|
503
|
+
-
|
|
504
|
+
-
|
|
505
|
+
-
|
|
506
|
+
-
|
|
507
|
+
- `heuristics.ts.fs-lchmod-callback.ast`
|
|
508
|
+
-
|
|
509
|
+
-
|
|
510
|
+
-
|
|
511
|
+
-
|
|
512
|
+
- `heuristics.ts.fs-unlink-callback.ast`
|
|
513
|
+
- `heuristics.ts.fs-unlink-sync.ast`
|
|
514
|
+
-
|
|
515
|
+
-
|
|
516
|
+
-
|
|
517
|
+
-
|
|
518
|
+
- `heuristics.ts.fs-readlink-callback.ast`
|
|
519
|
+
- `heuristics.ts.fs-readlink-sync.ast`
|
|
520
|
+
-
|
|
521
|
+
-
|
|
522
|
+
-
|
|
523
|
+
-
|
|
524
|
+
- `heuristics.ts.fs-symlink-callback.ast`
|
|
525
|
+
- `heuristics.ts.fs-symlink-sync.ast`
|
|
526
|
+
-
|
|
527
|
+
-
|
|
528
|
+
-
|
|
529
|
+
-
|
|
530
|
+
- `heuristics.ts.fs-fchown-callback.ast`
|
|
531
|
+
-
|
|
532
|
+
-
|
|
533
|
+
-
|
|
534
|
+
-
|
|
535
|
+
- `heuristics.ts.fs-fchmod-callback.ast`
|
|
536
|
+
-
|
|
537
|
+
-
|
|
538
|
+
-
|
|
539
|
+
-
|
|
540
|
+
- `heuristics.ts.fs-fstat-callback.ast`
|
|
541
|
+
-
|
|
542
|
+
-
|
|
543
|
+
-
|
|
544
|
+
-
|
|
545
|
+
- `heuristics.ts.fs-fdatasync-callback.ast`
|
|
546
|
+
-
|
|
547
|
+
-
|
|
548
|
+
-
|
|
549
|
+
-
|
|
550
|
+
- `heuristics.ts.fs-fsync-callback.ast`
|
|
551
|
+
-
|
|
552
|
+
-
|
|
553
|
+
-
|
|
554
|
+
-
|
|
555
|
+
- `heuristics.ts.fs-ftruncate-callback.ast`
|
|
556
|
+
-
|
|
557
|
+
-
|
|
558
|
+
-
|
|
559
|
+
-
|
|
560
|
+
- `heuristics.ts.fs-truncate-callback.ast`
|
|
561
|
+
- `heuristics.ts.fs-truncate-sync.ast`
|
|
562
|
+
-
|
|
563
|
+
-
|
|
564
|
+
-
|
|
565
|
+
-
|
|
566
|
+
- `heuristics.ts.fs-futimes-callback.ast`
|
|
567
|
+
- `heuristics.ts.fs-futimes-sync.ast`
|
|
568
|
+
-
|
|
569
|
+
-
|
|
570
|
+
-
|
|
571
|
+
-
|
|
572
|
+
- `heuristics.ts.fs-lutimes-callback.ast`
|
|
573
|
+
- `heuristics.ts.fs-lutimes-sync.ast`
|
|
574
|
+
-
|
|
575
|
+
-
|
|
576
|
+
-
|
|
577
|
+
-
|
|
578
|
+
- `heuristics.ts.fs-link-callback.ast`
|
|
579
|
+
- `heuristics.ts.fs-link-sync.ast`
|
|
580
|
+
-
|
|
581
|
+
-
|
|
582
|
+
-
|
|
583
|
+
-
|
|
584
|
+
- `heuristics.ts.fs-mkdtemp-callback.ast`
|
|
585
|
+
-
|
|
586
|
+
-
|
|
587
|
+
-
|
|
588
|
+
-
|
|
589
|
+
- `heuristics.ts.fs-opendir-callback.ast`
|
|
590
|
+
- `heuristics.ts.fs-opendir-sync.ast`
|
|
591
|
+
- `heuristics.ts.fs-mkdtemp-sync.ast`
|
|
592
|
+
-
|
|
593
|
+
-
|
|
594
|
+
-
|
|
595
|
+
-
|
|
596
|
+
- `heuristics.ts.fs-open-callback.ast`
|
|
597
|
+
- `heuristics.ts.fs-open-sync.ast`
|
|
598
|
+
-
|
|
599
|
+
-
|
|
600
|
+
-
|
|
601
|
+
-
|
|
602
|
+
- `heuristics.ts.fs-cp-callback.ast`
|
|
603
|
+
- `heuristics.ts.fs-cp-sync.ast`
|
|
604
|
+
-
|
|
605
|
+
-
|
|
606
|
+
-
|
|
607
|
+
-
|
|
608
|
+
- `heuristics.ts.fs-close-callback.ast`
|
|
609
|
+
- `heuristics.ts.fs-close-sync.ast`
|
|
610
|
+
-
|
|
611
|
+
-
|
|
612
|
+
-
|
|
613
|
+
-
|
|
614
|
+
- `heuristics.ts.fs-read-callback.ast`
|
|
615
|
+
-
|
|
616
|
+
-
|
|
617
|
+
-
|
|
618
|
+
-
|
|
619
|
+
- `heuristics.ts.fs-readv-callback.ast`
|
|
620
|
+
-
|
|
621
|
+
-
|
|
622
|
+
-
|
|
623
|
+
-
|
|
624
|
+
- `heuristics.ts.fs-writev-callback.ast`
|
|
625
|
+
-
|
|
626
|
+
-
|
|
627
|
+
-
|
|
628
|
+
-
|
|
629
|
+
- `heuristics.ts.fs-write-callback.ast`
|
|
630
|
+
-
|
|
631
|
+
-
|
|
632
|
+
-
|
|
633
|
+
-
|
|
634
|
+
- `heuristics.ts.explicit-any.ast`
|
|
635
|
+
-
|
|
636
|
+
-
|
|
637
|
+
-
|
|
638
|
+
-
|
|
639
|
+
- `heuristics.ts.debugger.ast`
|
|
640
|
+
-
|
|
641
|
+
-
|
|
642
|
+
-
|
|
643
|
+
-
|
|
644
|
+
- `heuristics.ios.force-unwrap.ast`
|
|
645
|
+
-
|
|
646
|
+
-
|
|
647
|
+
-
|
|
648
|
+
-
|
|
649
|
+
- `heuristics.ios.anyview.ast`
|
|
650
|
+
-
|
|
651
|
+
-
|
|
652
|
+
-
|
|
653
|
+
-
|
|
654
|
+
- `heuristics.ios.force-try.ast`
|
|
655
|
+
-
|
|
656
|
+
-
|
|
657
|
+
-
|
|
658
|
+
-
|
|
659
|
+
- `heuristics.ios.force-cast.ast`
|
|
660
|
+
-
|
|
661
|
+
-
|
|
662
|
+
-
|
|
663
|
+
-
|
|
664
|
+
- `heuristics.ios.callback-style.ast`
|
|
665
|
+
-
|
|
666
|
+
-
|
|
667
|
+
-
|
|
668
|
+
-
|
|
669
|
+
- `heuristics.android.thread-sleep.ast`
|
|
670
|
+
-
|
|
671
|
+
-
|
|
672
|
+
-
|
|
673
|
+
-
|
|
674
|
+
- `heuristics.android.globalscope.ast`
|
|
675
|
+
-
|
|
676
|
+
-
|
|
677
|
+
-
|
|
678
|
+
-
|
|
679
|
+
- `heuristics.android.run-blocking.ast`
|
|
680
|
+
-
|
|
681
|
+
-
|
|
682
|
+
-
|
|
683
|
+
-
|
|
684
|
+
- Remaining heuristic rules stay at `WARN` across all stages.
|
|
685
|
+
|
|
686
|
+
## Current pilot rules
|
|
687
|
+
|
|
688
|
+
-
|
|
689
|
+
-
|
|
690
|
+
-
|
|
691
|
+
-
|
|
692
|
+
- `heuristics.ts.empty-catch.ast`
|
|
693
|
+
-
|
|
694
|
+
-
|
|
695
|
+
-
|
|
696
|
+
-
|
|
697
|
+
- `heuristics.ts.explicit-any.ast`
|
|
698
|
+
-
|
|
699
|
+
-
|
|
700
|
+
-
|
|
701
|
+
-
|
|
702
|
+
- `heuristics.ts.console-log.ast`
|
|
703
|
+
-
|
|
704
|
+
-
|
|
705
|
+
-
|
|
706
|
+
-
|
|
707
|
+
- `heuristics.ts.console-error.ast`
|
|
708
|
+
-
|
|
709
|
+
-
|
|
710
|
+
-
|
|
711
|
+
-
|
|
712
|
+
- `heuristics.ts.eval.ast`
|
|
713
|
+
-
|
|
714
|
+
-
|
|
715
|
+
-
|
|
716
|
+
-
|
|
717
|
+
- `heuristics.ts.function-constructor.ast`
|
|
718
|
+
-
|
|
719
|
+
-
|
|
720
|
+
-
|
|
721
|
+
-
|
|
722
|
+
- `heuristics.ts.set-timeout-string.ast`
|
|
723
|
+
-
|
|
724
|
+
-
|
|
725
|
+
-
|
|
726
|
+
-
|
|
727
|
+
- `heuristics.ts.set-interval-string.ast`
|
|
728
|
+
-
|
|
729
|
+
-
|
|
730
|
+
-
|
|
731
|
+
-
|
|
732
|
+
- `heuristics.ts.new-promise-async.ast`
|
|
733
|
+
-
|
|
734
|
+
-
|
|
735
|
+
-
|
|
736
|
+
-
|
|
737
|
+
- `heuristics.ts.with-statement.ast`
|
|
738
|
+
-
|
|
739
|
+
-
|
|
740
|
+
-
|
|
741
|
+
-
|
|
742
|
+
- `heuristics.ts.process-exit.ast`
|
|
743
|
+
-
|
|
744
|
+
-
|
|
745
|
+
-
|
|
746
|
+
-
|
|
747
|
+
- `heuristics.ts.delete-operator.ast`
|
|
748
|
+
-
|
|
749
|
+
-
|
|
750
|
+
-
|
|
751
|
+
-
|
|
752
|
+
- `heuristics.ts.inner-html.ast`
|
|
753
|
+
-
|
|
754
|
+
-
|
|
755
|
+
-
|
|
756
|
+
-
|
|
757
|
+
- `heuristics.ts.document-write.ast`
|
|
758
|
+
-
|
|
759
|
+
-
|
|
760
|
+
-
|
|
761
|
+
-
|
|
762
|
+
- `heuristics.ts.insert-adjacent-html.ast`
|
|
763
|
+
-
|
|
764
|
+
-
|
|
765
|
+
-
|
|
766
|
+
-
|
|
767
|
+
- `heuristics.ts.child-process-import.ast`
|
|
768
|
+
-
|
|
769
|
+
-
|
|
770
|
+
-
|
|
771
|
+
-
|
|
772
|
+
- `heuristics.ts.process-env-mutation.ast`
|
|
773
|
+
- `heuristics.ts.hardcoded-secret-token.ast`
|
|
774
|
+
- `heuristics.ts.weak-crypto-hash.ast`
|
|
775
|
+
- `heuristics.ts.weak-token-randomuuid.ast`
|
|
776
|
+
- `heuristics.ts.jwt-decode-without-verify.ast`
|
|
777
|
+
- `heuristics.ts.jwt-verify-ignore-expiration.ast`
|
|
778
|
+
- `heuristics.ts.jwt-sign-no-expiration.ast`
|
|
779
|
+
- `heuristics.ts.tls-reject-unauthorized-false.ast`
|
|
780
|
+
- `heuristics.ts.tls-env-override.ast`
|
|
781
|
+
- `heuristics.ts.child-process-shell-true.ast`
|
|
782
|
+
- `heuristics.ts.vm-dynamic-code-execution.ast`
|
|
783
|
+
- `heuristics.ts.dynamic-shell-invocation.ast`
|
|
784
|
+
- `heuristics.ts.insecure-token-math-random.ast`
|
|
785
|
+
- `heuristics.ts.insecure-token-date-now.ast`
|
|
786
|
+
- `heuristics.ts.buffer-alloc-unsafe.ast`
|
|
787
|
+
- `heuristics.ts.buffer-alloc-unsafe-slow.ast`
|
|
788
|
+
-
|
|
789
|
+
-
|
|
790
|
+
-
|
|
791
|
+
-
|
|
792
|
+
- `heuristics.ts.fs-write-file-sync.ast`
|
|
793
|
+
-
|
|
794
|
+
-
|
|
795
|
+
-
|
|
796
|
+
-
|
|
797
|
+
- `heuristics.ts.fs-rm-sync.ast`
|
|
798
|
+
- `heuristics.ts.fs-rename-sync.ast`
|
|
799
|
+
-
|
|
800
|
+
-
|
|
801
|
+
-
|
|
802
|
+
-
|
|
803
|
+
- `heuristics.ts.fs-mkdir-sync.ast`
|
|
804
|
+
-
|
|
805
|
+
-
|
|
806
|
+
-
|
|
807
|
+
-
|
|
808
|
+
- `heuristics.ts.fs-readdir-sync.ast`
|
|
809
|
+
-
|
|
810
|
+
-
|
|
811
|
+
-
|
|
812
|
+
-
|
|
813
|
+
- `heuristics.ts.fs-read-file-sync.ast`
|
|
814
|
+
- `heuristics.ts.fs-read-sync.ast`
|
|
815
|
+
-
|
|
816
|
+
-
|
|
817
|
+
-
|
|
818
|
+
-
|
|
819
|
+
- `heuristics.ts.fs-stat-sync.ast`
|
|
820
|
+
- `heuristics.ts.fs-statfs-sync.ast`
|
|
821
|
+
-
|
|
822
|
+
-
|
|
823
|
+
-
|
|
824
|
+
-
|
|
825
|
+
- `heuristics.ts.fs-realpath-sync.ast`
|
|
826
|
+
-
|
|
827
|
+
-
|
|
828
|
+
-
|
|
829
|
+
-
|
|
830
|
+
- `heuristics.ts.fs-lstat-sync.ast`
|
|
831
|
+
-
|
|
832
|
+
-
|
|
833
|
+
-
|
|
834
|
+
-
|
|
835
|
+
- `heuristics.ts.fs-exists-sync.ast`
|
|
836
|
+
- `heuristics.ts.fs-access-sync.ast`
|
|
837
|
+
- `heuristics.ts.fs-utimes-sync.ast`
|
|
838
|
+
-
|
|
839
|
+
-
|
|
840
|
+
-
|
|
841
|
+
-
|
|
842
|
+
- `heuristics.ts.fs-chmod-sync.ast`
|
|
843
|
+
-
|
|
844
|
+
-
|
|
845
|
+
-
|
|
846
|
+
-
|
|
847
|
+
- `heuristics.ts.fs-chown-sync.ast`
|
|
848
|
+
-
|
|
849
|
+
-
|
|
850
|
+
-
|
|
851
|
+
-
|
|
852
|
+
- `heuristics.ts.fs-fchown-sync.ast`
|
|
853
|
+
- `heuristics.ts.fs-fchmod-sync.ast`
|
|
854
|
+
- `heuristics.ts.fs-fstat-sync.ast`
|
|
855
|
+
- `heuristics.ts.fs-ftruncate-sync.ast`
|
|
856
|
+
- `heuristics.ts.fs-readv-sync.ast`
|
|
857
|
+
- `heuristics.ts.fs-writev-sync.ast`
|
|
858
|
+
- `heuristics.ts.fs-write-sync.ast`
|
|
859
|
+
- `heuristics.ts.fs-fsync-sync.ast`
|
|
860
|
+
- `heuristics.ts.fs-fdatasync-sync.ast`
|
|
861
|
+
-
|
|
862
|
+
-
|
|
863
|
+
-
|
|
864
|
+
-
|
|
865
|
+
- `heuristics.ts.child-process-exec-sync.ast`
|
|
866
|
+
-
|
|
867
|
+
-
|
|
868
|
+
-
|
|
869
|
+
-
|
|
870
|
+
- `heuristics.ts.child-process-exec.ast`
|
|
871
|
+
-
|
|
872
|
+
-
|
|
873
|
+
-
|
|
874
|
+
-
|
|
875
|
+
- `heuristics.ts.child-process-spawn-sync.ast`
|
|
876
|
+
-
|
|
877
|
+
-
|
|
878
|
+
-
|
|
879
|
+
-
|
|
880
|
+
- `heuristics.ts.child-process-spawn.ast`
|
|
881
|
+
-
|
|
882
|
+
-
|
|
883
|
+
-
|
|
884
|
+
-
|
|
885
|
+
- `heuristics.ts.child-process-fork.ast`
|
|
886
|
+
-
|
|
887
|
+
-
|
|
888
|
+
-
|
|
889
|
+
-
|
|
890
|
+
- `heuristics.ts.child-process-exec-file-sync.ast`
|
|
891
|
+
-
|
|
892
|
+
-
|
|
893
|
+
-
|
|
894
|
+
-
|
|
895
|
+
- `heuristics.ts.child-process-exec-file-untrusted-args.ast`
|
|
896
|
+
-
|
|
897
|
+
-
|
|
898
|
+
-
|
|
899
|
+
-
|
|
900
|
+
- `heuristics.ts.child-process-exec-file.ast`
|
|
901
|
+
-
|
|
902
|
+
-
|
|
903
|
+
-
|
|
904
|
+
-
|
|
905
|
+
- `heuristics.ts.fs-append-file-sync.ast`
|
|
906
|
+
-
|
|
907
|
+
-
|
|
908
|
+
-
|
|
909
|
+
-
|
|
910
|
+
- `heuristics.ts.fs-promises-write-file.ast`
|
|
911
|
+
-
|
|
912
|
+
-
|
|
913
|
+
-
|
|
914
|
+
-
|
|
915
|
+
- `heuristics.ts.fs-promises-append-file.ast`
|
|
916
|
+
-
|
|
917
|
+
-
|
|
918
|
+
-
|
|
919
|
+
-
|
|
920
|
+
- `heuristics.ts.fs-promises-rm.ast`
|
|
921
|
+
-
|
|
922
|
+
-
|
|
923
|
+
-
|
|
924
|
+
-
|
|
925
|
+
- `heuristics.ts.fs-promises-unlink.ast`
|
|
926
|
+
-
|
|
927
|
+
-
|
|
928
|
+
-
|
|
929
|
+
-
|
|
930
|
+
- `heuristics.ts.fs-promises-read-file.ast`
|
|
931
|
+
-
|
|
932
|
+
-
|
|
933
|
+
-
|
|
934
|
+
-
|
|
935
|
+
- `heuristics.ts.fs-promises-readdir.ast`
|
|
936
|
+
-
|
|
937
|
+
-
|
|
938
|
+
-
|
|
939
|
+
-
|
|
940
|
+
- `heuristics.ts.fs-promises-mkdir.ast`
|
|
941
|
+
-
|
|
942
|
+
-
|
|
943
|
+
-
|
|
944
|
+
-
|
|
945
|
+
- `heuristics.ts.fs-promises-stat.ast`
|
|
946
|
+
-
|
|
947
|
+
-
|
|
948
|
+
-
|
|
949
|
+
-
|
|
950
|
+
- `heuristics.ts.fs-promises-copy-file.ast`
|
|
951
|
+
-
|
|
952
|
+
-
|
|
953
|
+
-
|
|
954
|
+
-
|
|
955
|
+
- `heuristics.ts.fs-promises-rename.ast`
|
|
956
|
+
-
|
|
957
|
+
-
|
|
958
|
+
-
|
|
959
|
+
-
|
|
960
|
+
- `heuristics.ts.fs-promises-access.ast`
|
|
961
|
+
-
|
|
962
|
+
-
|
|
963
|
+
-
|
|
964
|
+
-
|
|
965
|
+
- `heuristics.ts.fs-promises-chmod.ast`
|
|
966
|
+
-
|
|
967
|
+
-
|
|
968
|
+
-
|
|
969
|
+
-
|
|
970
|
+
- `heuristics.ts.fs-promises-chown.ast`
|
|
971
|
+
-
|
|
972
|
+
-
|
|
973
|
+
-
|
|
974
|
+
-
|
|
975
|
+
- `heuristics.ts.fs-promises-utimes.ast`
|
|
976
|
+
-
|
|
977
|
+
-
|
|
978
|
+
-
|
|
979
|
+
-
|
|
980
|
+
- `heuristics.ts.fs-promises-lstat.ast`
|
|
981
|
+
-
|
|
982
|
+
-
|
|
983
|
+
-
|
|
984
|
+
-
|
|
985
|
+
- `heuristics.ts.fs-promises-realpath.ast`
|
|
986
|
+
-
|
|
987
|
+
-
|
|
988
|
+
-
|
|
989
|
+
-
|
|
990
|
+
- `heuristics.ts.fs-promises-symlink.ast`
|
|
991
|
+
-
|
|
992
|
+
-
|
|
993
|
+
-
|
|
994
|
+
-
|
|
995
|
+
- `heuristics.ts.fs-promises-link.ast`
|
|
996
|
+
-
|
|
997
|
+
-
|
|
998
|
+
-
|
|
999
|
+
-
|
|
1000
|
+
- `heuristics.ts.fs-promises-readlink.ast`
|
|
1001
|
+
-
|
|
1002
|
+
-
|
|
1003
|
+
-
|
|
1004
|
+
-
|
|
1005
|
+
- `heuristics.ts.fs-promises-open.ast`
|
|
1006
|
+
-
|
|
1007
|
+
-
|
|
1008
|
+
-
|
|
1009
|
+
-
|
|
1010
|
+
- `heuristics.ts.fs-promises-opendir.ast`
|
|
1011
|
+
-
|
|
1012
|
+
-
|
|
1013
|
+
-
|
|
1014
|
+
-
|
|
1015
|
+
- `heuristics.ts.fs-promises-cp.ast`
|
|
1016
|
+
-
|
|
1017
|
+
-
|
|
1018
|
+
-
|
|
1019
|
+
-
|
|
1020
|
+
- `heuristics.ts.fs-promises-mkdtemp.ast`
|
|
1021
|
+
-
|
|
1022
|
+
-
|
|
1023
|
+
-
|
|
1024
|
+
-
|
|
1025
|
+
- `heuristics.ts.fs-utimes-callback.ast`
|
|
1026
|
+
-
|
|
1027
|
+
-
|
|
1028
|
+
-
|
|
1029
|
+
-
|
|
1030
|
+
- `heuristics.ts.fs-watch-callback.ast`
|
|
1031
|
+
-
|
|
1032
|
+
-
|
|
1033
|
+
-
|
|
1034
|
+
-
|
|
1035
|
+
- `heuristics.ts.fs-watch-file-callback.ast`
|
|
1036
|
+
-
|
|
1037
|
+
-
|
|
1038
|
+
-
|
|
1039
|
+
-
|
|
1040
|
+
- `heuristics.ts.fs-unwatch-file-callback.ast`
|
|
1041
|
+
-
|
|
1042
|
+
-
|
|
1043
|
+
-
|
|
1044
|
+
-
|
|
1045
|
+
- `heuristics.ts.fs-read-file-callback.ast`
|
|
1046
|
+
-
|
|
1047
|
+
-
|
|
1048
|
+
-
|
|
1049
|
+
-
|
|
1050
|
+
- `heuristics.ts.fs-exists-callback.ast`
|
|
1051
|
+
-
|
|
1052
|
+
-
|
|
1053
|
+
-
|
|
1054
|
+
-
|
|
1055
|
+
- `heuristics.ts.fs-write-file-callback.ast`
|
|
1056
|
+
-
|
|
1057
|
+
-
|
|
1058
|
+
-
|
|
1059
|
+
-
|
|
1060
|
+
- `heuristics.ts.fs-append-file-callback.ast`
|
|
1061
|
+
-
|
|
1062
|
+
-
|
|
1063
|
+
-
|
|
1064
|
+
-
|
|
1065
|
+
- `heuristics.ts.fs-readdir-callback.ast`
|
|
1066
|
+
-
|
|
1067
|
+
-
|
|
1068
|
+
-
|
|
1069
|
+
-
|
|
1070
|
+
- `heuristics.ts.fs-mkdir-callback.ast`
|
|
1071
|
+
-
|
|
1072
|
+
-
|
|
1073
|
+
-
|
|
1074
|
+
-
|
|
1075
|
+
- `heuristics.ts.fs-rmdir-callback.ast`
|
|
1076
|
+
- `heuristics.ts.fs-rmdir-sync.ast`
|
|
1077
|
+
-
|
|
1078
|
+
-
|
|
1079
|
+
-
|
|
1080
|
+
-
|
|
1081
|
+
- `heuristics.ts.fs-rm-callback.ast`
|
|
1082
|
+
-
|
|
1083
|
+
-
|
|
1084
|
+
-
|
|
1085
|
+
-
|
|
1086
|
+
- `heuristics.ts.fs-rename-callback.ast`
|
|
1087
|
+
-
|
|
1088
|
+
-
|
|
1089
|
+
-
|
|
1090
|
+
-
|
|
1091
|
+
- `heuristics.ts.fs-copy-file-callback.ast`
|
|
1092
|
+
- `heuristics.ts.fs-copy-file-sync.ast`
|
|
1093
|
+
-
|
|
1094
|
+
-
|
|
1095
|
+
-
|
|
1096
|
+
-
|
|
1097
|
+
- `heuristics.ts.fs-stat-callback.ast`
|
|
1098
|
+
-
|
|
1099
|
+
-
|
|
1100
|
+
-
|
|
1101
|
+
-
|
|
1102
|
+
- `heuristics.ts.fs-statfs-callback.ast`
|
|
1103
|
+
-
|
|
1104
|
+
-
|
|
1105
|
+
-
|
|
1106
|
+
-
|
|
1107
|
+
- `heuristics.ts.fs-lstat-callback.ast`
|
|
1108
|
+
-
|
|
1109
|
+
-
|
|
1110
|
+
-
|
|
1111
|
+
-
|
|
1112
|
+
- `heuristics.ts.fs-realpath-callback.ast`
|
|
1113
|
+
-
|
|
1114
|
+
-
|
|
1115
|
+
-
|
|
1116
|
+
-
|
|
1117
|
+
- `heuristics.ts.fs-access-callback.ast`
|
|
1118
|
+
-
|
|
1119
|
+
-
|
|
1120
|
+
-
|
|
1121
|
+
-
|
|
1122
|
+
- `heuristics.ts.fs-chmod-callback.ast`
|
|
1123
|
+
-
|
|
1124
|
+
-
|
|
1125
|
+
-
|
|
1126
|
+
-
|
|
1127
|
+
- `heuristics.ts.fs-chown-callback.ast`
|
|
1128
|
+
-
|
|
1129
|
+
-
|
|
1130
|
+
-
|
|
1131
|
+
-
|
|
1132
|
+
- `heuristics.ts.fs-lchown-callback.ast`
|
|
1133
|
+
-
|
|
1134
|
+
-
|
|
1135
|
+
-
|
|
1136
|
+
-
|
|
1137
|
+
- `heuristics.ts.fs-lchmod-callback.ast`
|
|
1138
|
+
-
|
|
1139
|
+
-
|
|
1140
|
+
-
|
|
1141
|
+
-
|
|
1142
|
+
- `heuristics.ts.fs-unlink-callback.ast`
|
|
1143
|
+
- `heuristics.ts.fs-unlink-sync.ast`
|
|
1144
|
+
-
|
|
1145
|
+
-
|
|
1146
|
+
-
|
|
1147
|
+
-
|
|
1148
|
+
- `heuristics.ts.fs-readlink-callback.ast`
|
|
1149
|
+
- `heuristics.ts.fs-readlink-sync.ast`
|
|
1150
|
+
-
|
|
1151
|
+
-
|
|
1152
|
+
-
|
|
1153
|
+
-
|
|
1154
|
+
- `heuristics.ts.fs-symlink-callback.ast`
|
|
1155
|
+
- `heuristics.ts.fs-symlink-sync.ast`
|
|
1156
|
+
-
|
|
1157
|
+
-
|
|
1158
|
+
-
|
|
1159
|
+
-
|
|
1160
|
+
- `heuristics.ts.fs-fchown-callback.ast`
|
|
1161
|
+
-
|
|
1162
|
+
-
|
|
1163
|
+
-
|
|
1164
|
+
-
|
|
1165
|
+
- `heuristics.ts.fs-fchmod-callback.ast`
|
|
1166
|
+
-
|
|
1167
|
+
-
|
|
1168
|
+
-
|
|
1169
|
+
-
|
|
1170
|
+
- `heuristics.ts.fs-fstat-callback.ast`
|
|
1171
|
+
-
|
|
1172
|
+
-
|
|
1173
|
+
-
|
|
1174
|
+
-
|
|
1175
|
+
- `heuristics.ts.fs-fdatasync-callback.ast`
|
|
1176
|
+
-
|
|
1177
|
+
-
|
|
1178
|
+
-
|
|
1179
|
+
-
|
|
1180
|
+
- `heuristics.ts.fs-fsync-callback.ast`
|
|
1181
|
+
-
|
|
1182
|
+
-
|
|
1183
|
+
-
|
|
1184
|
+
-
|
|
1185
|
+
- `heuristics.ts.fs-ftruncate-callback.ast`
|
|
1186
|
+
-
|
|
1187
|
+
-
|
|
1188
|
+
-
|
|
1189
|
+
-
|
|
1190
|
+
- `heuristics.ts.fs-truncate-callback.ast`
|
|
1191
|
+
- `heuristics.ts.fs-truncate-sync.ast`
|
|
1192
|
+
-
|
|
1193
|
+
-
|
|
1194
|
+
-
|
|
1195
|
+
-
|
|
1196
|
+
- `heuristics.ts.fs-futimes-callback.ast`
|
|
1197
|
+
- `heuristics.ts.fs-futimes-sync.ast`
|
|
1198
|
+
-
|
|
1199
|
+
-
|
|
1200
|
+
-
|
|
1201
|
+
-
|
|
1202
|
+
- `heuristics.ts.fs-lutimes-callback.ast`
|
|
1203
|
+
- `heuristics.ts.fs-lutimes-sync.ast`
|
|
1204
|
+
-
|
|
1205
|
+
-
|
|
1206
|
+
-
|
|
1207
|
+
-
|
|
1208
|
+
- `heuristics.ts.fs-link-callback.ast`
|
|
1209
|
+
- `heuristics.ts.fs-link-sync.ast`
|
|
1210
|
+
-
|
|
1211
|
+
-
|
|
1212
|
+
-
|
|
1213
|
+
-
|
|
1214
|
+
- `heuristics.ts.fs-mkdtemp-callback.ast`
|
|
1215
|
+
-
|
|
1216
|
+
-
|
|
1217
|
+
-
|
|
1218
|
+
-
|
|
1219
|
+
- `heuristics.ts.fs-opendir-callback.ast`
|
|
1220
|
+
- `heuristics.ts.fs-opendir-sync.ast`
|
|
1221
|
+
- `heuristics.ts.fs-mkdtemp-sync.ast`
|
|
1222
|
+
-
|
|
1223
|
+
-
|
|
1224
|
+
-
|
|
1225
|
+
-
|
|
1226
|
+
- `heuristics.ts.fs-open-callback.ast`
|
|
1227
|
+
- `heuristics.ts.fs-open-sync.ast`
|
|
1228
|
+
-
|
|
1229
|
+
-
|
|
1230
|
+
-
|
|
1231
|
+
-
|
|
1232
|
+
- `heuristics.ts.fs-cp-callback.ast`
|
|
1233
|
+
- `heuristics.ts.fs-cp-sync.ast`
|
|
1234
|
+
-
|
|
1235
|
+
-
|
|
1236
|
+
-
|
|
1237
|
+
-
|
|
1238
|
+
- `heuristics.ts.fs-close-callback.ast`
|
|
1239
|
+
- `heuristics.ts.fs-close-sync.ast`
|
|
1240
|
+
-
|
|
1241
|
+
-
|
|
1242
|
+
-
|
|
1243
|
+
-
|
|
1244
|
+
- `heuristics.ts.fs-read-callback.ast`
|
|
1245
|
+
-
|
|
1246
|
+
-
|
|
1247
|
+
-
|
|
1248
|
+
-
|
|
1249
|
+
- `heuristics.ts.fs-readv-callback.ast`
|
|
1250
|
+
-
|
|
1251
|
+
-
|
|
1252
|
+
-
|
|
1253
|
+
-
|
|
1254
|
+
- `heuristics.ts.fs-writev-callback.ast`
|
|
1255
|
+
-
|
|
1256
|
+
-
|
|
1257
|
+
-
|
|
1258
|
+
-
|
|
1259
|
+
- `heuristics.ts.fs-write-callback.ast`
|
|
1260
|
+
-
|
|
1261
|
+
-
|
|
1262
|
+
-
|
|
1263
|
+
-
|
|
1264
|
+
- `heuristics.ts.debugger.ast`
|
|
1265
|
+
-
|
|
1266
|
+
-
|
|
1267
|
+
-
|
|
1268
|
+
-
|
|
1269
|
+
- `heuristics.ios.force-unwrap.ast`
|
|
1270
|
+
-
|
|
1271
|
+
-
|
|
1272
|
+
-
|
|
1273
|
+
-
|
|
1274
|
+
- `heuristics.ios.anyview.ast`
|
|
1275
|
+
-
|
|
1276
|
+
-
|
|
1277
|
+
-
|
|
1278
|
+
-
|
|
1279
|
+
- `heuristics.ios.force-try.ast`
|
|
1280
|
+
-
|
|
1281
|
+
-
|
|
1282
|
+
-
|
|
1283
|
+
-
|
|
1284
|
+
- `heuristics.ios.force-cast.ast`
|
|
1285
|
+
-
|
|
1286
|
+
-
|
|
1287
|
+
-
|
|
1288
|
+
-
|
|
1289
|
+
- `heuristics.ios.callback-style.ast`
|
|
1290
|
+
-
|
|
1291
|
+
-
|
|
1292
|
+
-
|
|
1293
|
+
-
|
|
1294
|
+
- `heuristics.android.thread-sleep.ast`
|
|
1295
|
+
-
|
|
1296
|
+
-
|
|
1297
|
+
-
|
|
1298
|
+
-
|
|
1299
|
+
- `heuristics.android.globalscope.ast`
|
|
1300
|
+
-
|
|
1301
|
+
-
|
|
1302
|
+
-
|
|
1303
|
+
-
|
|
1304
|
+
- `heuristics.android.run-blocking.ast`
|