@htekdev/actions-debugger 1.0.0 → 1.0.2

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.
Files changed (58) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +108 -108
  3. package/errors/_schema.json +89 -89
  4. package/errors/caching-artifacts/artifact-storage-quota-exceeded.yml +118 -0
  5. package/errors/caching-artifacts/cache-miss.yml +56 -56
  6. package/errors/caching-artifacts/cache-save-cancelled-job.yml +82 -0
  7. package/errors/caching-artifacts/cache-v3-to-v4-breaking-changes.yml +95 -0
  8. package/errors/caching-artifacts/cross-repo-artifacts-not-supported.yml +102 -0
  9. package/errors/caching-artifacts/upload-artifact-no-files-found.yml +92 -0
  10. package/errors/caching-artifacts/upload-artifact-v4-breaking.yml +67 -67
  11. package/errors/concurrency-timing/cancel-in-progress-deploy-drops.yml +97 -0
  12. package/errors/concurrency-timing/jobs-cancelled-unexpectedly.yml +60 -60
  13. package/errors/concurrency-timing/skipped-needs-cascade.yml +103 -0
  14. package/errors/concurrency-timing/workflow-run-conclusion-unchecked.yml +100 -0
  15. package/errors/known-unsolved/composite-input-env-vars-missing.yml +91 -0
  16. package/errors/known-unsolved/composite-nested-outputs-null.yml +101 -0
  17. package/errors/known-unsolved/no-dynamic-secret-access.yml +111 -0
  18. package/errors/known-unsolved/no-step-level-rerun.yml +94 -0
  19. package/errors/known-unsolved/no-step-retry.yml +53 -53
  20. package/errors/known-unsolved/workflow-rerun-limit.yml +101 -0
  21. package/errors/permissions-auth/checkout-submodule-private-auth.yml +91 -0
  22. package/errors/permissions-auth/fork-pr-secrets-unavailable.yml +97 -0
  23. package/errors/permissions-auth/gcp-oidc-workload-identity-misconfigured.yml +130 -0
  24. package/errors/permissions-auth/github-token-403.yml +64 -64
  25. package/errors/permissions-auth/github-token-protected-branch-push.yml +109 -0
  26. package/errors/permissions-auth/oidc-aws-failure.yml +85 -85
  27. package/errors/permissions-auth/oidc-azure-subject-mismatch.yml +91 -0
  28. package/errors/runner-environment/disk-space.yml +57 -57
  29. package/errors/runner-environment/docker-buildx-not-setup.yml +106 -0
  30. package/errors/runner-environment/macos-homebrew-path.yml +90 -0
  31. package/errors/runner-environment/node-runtime-deprecation.yml +56 -56
  32. package/errors/runner-environment/node20-to-node24-migration.yml +118 -0
  33. package/errors/runner-environment/npm-ci-lockfile-mismatch.yml +112 -0
  34. package/errors/runner-environment/self-hosted-stale-toolcache.yml +73 -0
  35. package/errors/runner-environment/setup-node-version-file-missing.yml +105 -0
  36. package/errors/runner-environment/windows-execution-policy.yml +83 -0
  37. package/errors/silent-failures/add-mask-no-retroactive-masking.yml +75 -0
  38. package/errors/silent-failures/composite-boolean-inputs-as-strings.yml +110 -0
  39. package/errors/silent-failures/conditional-output-null-downstream.yml +82 -0
  40. package/errors/silent-failures/continue-on-error-masks-failure.yml +86 -0
  41. package/errors/silent-failures/github-token-no-trigger.yml +57 -57
  42. package/errors/silent-failures/reusable-workflow-env-secrets-empty.yml +90 -0
  43. package/errors/silent-failures/scheduled-workflow-disabled.yml +59 -59
  44. package/errors/silent-failures/sparse-checkout-sticky-cone-mode.yml +120 -0
  45. package/errors/triggers/cron-schedule-late.yml +59 -59
  46. package/errors/triggers/pull-request-target-rce-risk.yml +117 -0
  47. package/errors/triggers/workflow-not-triggering.yml +60 -60
  48. package/errors/triggers/workflow-run-default-branch-requirement.yml +78 -0
  49. package/errors/yaml-syntax/anchors-not-supported.yml +95 -0
  50. package/errors/yaml-syntax/dynamic-matrix-fromjson-failure.yml +99 -0
  51. package/errors/yaml-syntax/if-always-true.yml +52 -52
  52. package/errors/yaml-syntax/missing-expression-wrapper.yml +67 -0
  53. package/errors/yaml-syntax/needs-indirect-outputs.yml +91 -0
  54. package/errors/yaml-syntax/reusable-workflow-missing-output-declaration.yml +140 -0
  55. package/errors/yaml-syntax/secrets-in-if.yml +55 -55
  56. package/errors/yaml-syntax/unexpected-yaml-key.yml +69 -69
  57. package/errors/yaml-syntax/working-directory-ignored-on-uses.yml +66 -0
  58. package/package.json +70 -67
package/package.json CHANGED
@@ -1,67 +1,70 @@
1
- {
2
- "name": "@htekdev/actions-debugger",
3
- "version": "1.0.0",
4
- "description": "65+ real GitHub Actions errors, queryable by agents. MCP server + Copilot skills + error database.",
5
- "type": "module",
6
- "main": "./dist/index.js",
7
- "types": "./dist/index.d.ts",
8
- "bin": {
9
- "actions-debugger": "./dist/index.js"
10
- },
11
- "exports": {
12
- ".": {
13
- "import": "./dist/index.js",
14
- "types": "./dist/index.d.ts"
15
- }
16
- },
17
- "files": [
18
- "dist",
19
- "errors",
20
- "README.md",
21
- "LICENSE"
22
- ],
23
- "scripts": {
24
- "build": "tsc",
25
- "dev": "tsc --watch",
26
- "test": "vitest run",
27
- "test:watch": "vitest",
28
- "lint": "tsc --noEmit",
29
- "validate-errors": "node --import tsx scripts/validate-errors.ts",
30
- "start": "node dist/index.js",
31
- "prepublishOnly": "npm run build"
32
- },
33
- "keywords": [
34
- "github-actions",
35
- "debugging",
36
- "mcp",
37
- "model-context-protocol",
38
- "copilot",
39
- "ci-cd",
40
- "error-database"
41
- ],
42
- "author": "Hector Flores <hector.flores@htek.dev> (https://htek.dev)",
43
- "license": "MIT",
44
- "repository": {
45
- "type": "git",
46
- "url": "https://github.com/htekdev/actions-debugger.git"
47
- },
48
- "homepage": "https://htek.dev/articles/github-actions-debugging-guide",
49
- "bugs": {
50
- "url": "https://github.com/htekdev/actions-debugger/issues"
51
- },
52
- "dependencies": {
53
- "@modelcontextprotocol/sdk": "^1.12.0",
54
- "glob": "^11.0.0",
55
- "js-yaml": "^4.1.0"
56
- },
57
- "devDependencies": {
58
- "@types/js-yaml": "^4.0.9",
59
- "@types/node": "^22.0.0",
60
- "tsx": "^4.19.0",
61
- "typescript": "^5.7.0",
62
- "vitest": "^3.0.0"
63
- },
64
- "engines": {
65
- "node": ">=20.0.0"
66
- }
67
- }
1
+ {
2
+ "name": "@htekdev/actions-debugger",
3
+ "version": "1.0.2",
4
+ "description": "65+ real GitHub Actions errors, queryable by agents. MCP server + Copilot skills + error database.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "bin": {
9
+ "actions-debugger": "./dist/index.js"
10
+ },
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "errors",
20
+ "README.md",
21
+ "LICENSE"
22
+ ],
23
+ "scripts": {
24
+ "build": "tsc",
25
+ "dev": "tsc --watch",
26
+ "test": "vitest run",
27
+ "test:watch": "vitest",
28
+ "lint": "tsc --noEmit",
29
+ "validate-errors": "node --import tsx scripts/validate-errors.ts",
30
+ "start": "node dist/index.js",
31
+ "prepublishOnly": "npm run build"
32
+ },
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "keywords": [
37
+ "github-actions",
38
+ "debugging",
39
+ "mcp",
40
+ "model-context-protocol",
41
+ "copilot",
42
+ "ci-cd",
43
+ "error-database"
44
+ ],
45
+ "author": "Hector Flores <hector.flores@htek.dev> (https://htek.dev)",
46
+ "license": "MIT",
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "https://github.com/htekdev/actions-debugger.git"
50
+ },
51
+ "homepage": "https://htek.dev/articles/github-actions-debugging-guide",
52
+ "bugs": {
53
+ "url": "https://github.com/htekdev/actions-debugger/issues"
54
+ },
55
+ "dependencies": {
56
+ "@modelcontextprotocol/sdk": "^1.12.0",
57
+ "glob": "^11.0.0",
58
+ "js-yaml": "^4.1.0"
59
+ },
60
+ "devDependencies": {
61
+ "@types/js-yaml": "^4.0.9",
62
+ "@types/node": "^22.0.0",
63
+ "tsx": "^4.19.0",
64
+ "typescript": "^5.7.0",
65
+ "vitest": "^3.0.0"
66
+ },
67
+ "engines": {
68
+ "node": ">=20.0.0"
69
+ }
70
+ }