@sun-asterisk/sungen 3.0.0-beta.74 → 3.0.0-beta.77

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 (102) hide show
  1. package/dist/cli/commands/audit.d.ts.map +1 -1
  2. package/dist/cli/commands/audit.js +17 -3
  3. package/dist/cli/commands/audit.js.map +1 -1
  4. package/dist/cli/commands/delivery.d.ts.map +1 -1
  5. package/dist/cli/commands/delivery.js +30 -14
  6. package/dist/cli/commands/delivery.js.map +1 -1
  7. package/dist/cli/commands/ingest.d.ts +3 -0
  8. package/dist/cli/commands/ingest.d.ts.map +1 -0
  9. package/dist/cli/commands/ingest.js +179 -0
  10. package/dist/cli/commands/ingest.js.map +1 -0
  11. package/dist/cli/index.js +2 -0
  12. package/dist/cli/index.js.map +1 -1
  13. package/dist/dashboard/templates/index.html +54 -54
  14. package/dist/generators/gherkin-parser/index.d.ts +2 -0
  15. package/dist/generators/gherkin-parser/index.d.ts.map +1 -1
  16. package/dist/generators/gherkin-parser/index.js +15 -0
  17. package/dist/generators/gherkin-parser/index.js.map +1 -1
  18. package/dist/generators/test-generator/adapters/playwright/templates/steps/assertions/all-contain-element.hbs +8 -0
  19. package/dist/generators/test-generator/patterns/capture-patterns.d.ts +5 -0
  20. package/dist/generators/test-generator/patterns/capture-patterns.d.ts.map +1 -1
  21. package/dist/generators/test-generator/patterns/capture-patterns.js +33 -0
  22. package/dist/generators/test-generator/patterns/capture-patterns.js.map +1 -1
  23. package/dist/harness/audit.d.ts +5 -1
  24. package/dist/harness/audit.d.ts.map +1 -1
  25. package/dist/harness/audit.js +13 -2
  26. package/dist/harness/audit.js.map +1 -1
  27. package/dist/harness/capability-plan.d.ts +6 -0
  28. package/dist/harness/capability-plan.d.ts.map +1 -1
  29. package/dist/harness/capability-plan.js +13 -0
  30. package/dist/harness/capability-plan.js.map +1 -1
  31. package/dist/harness/parse.d.ts +1 -0
  32. package/dist/harness/parse.d.ts.map +1 -1
  33. package/dist/harness/parse.js +3 -0
  34. package/dist/harness/parse.js.map +1 -1
  35. package/dist/harness/provenance.d.ts +6 -0
  36. package/dist/harness/provenance.d.ts.map +1 -0
  37. package/dist/harness/provenance.js +65 -0
  38. package/dist/harness/provenance.js.map +1 -0
  39. package/dist/harness/sensors.d.ts +30 -0
  40. package/dist/harness/sensors.d.ts.map +1 -1
  41. package/dist/harness/sensors.js +122 -0
  42. package/dist/harness/sensors.js.map +1 -1
  43. package/dist/ingest/baseline-audit.d.ts +38 -0
  44. package/dist/ingest/baseline-audit.d.ts.map +1 -0
  45. package/dist/ingest/baseline-audit.js +85 -0
  46. package/dist/ingest/baseline-audit.js.map +1 -0
  47. package/dist/ingest/gsheet-fetch.d.ts +9 -0
  48. package/dist/ingest/gsheet-fetch.d.ts.map +1 -0
  49. package/dist/ingest/gsheet-fetch.js +180 -0
  50. package/dist/ingest/gsheet-fetch.js.map +1 -0
  51. package/dist/ingest/index.d.ts +6 -0
  52. package/dist/ingest/index.d.ts.map +1 -0
  53. package/dist/ingest/index.js +22 -0
  54. package/dist/ingest/index.js.map +1 -0
  55. package/dist/ingest/legacy-parser.d.ts +39 -0
  56. package/dist/ingest/legacy-parser.d.ts.map +1 -0
  57. package/dist/ingest/legacy-parser.js +218 -0
  58. package/dist/ingest/legacy-parser.js.map +1 -0
  59. package/dist/ingest/reconcile.d.ts +30 -0
  60. package/dist/ingest/reconcile.d.ts.map +1 -0
  61. package/dist/ingest/reconcile.js +65 -0
  62. package/dist/ingest/reconcile.js.map +1 -0
  63. package/dist/ingest/to-gherkin.d.ts +33 -0
  64. package/dist/ingest/to-gherkin.d.ts.map +1 -0
  65. package/dist/ingest/to-gherkin.js +93 -0
  66. package/dist/ingest/to-gherkin.js.map +1 -0
  67. package/dist/orchestrator/ai-rules-updater.d.ts.map +1 -1
  68. package/dist/orchestrator/ai-rules-updater.js +2 -0
  69. package/dist/orchestrator/ai-rules-updater.js.map +1 -1
  70. package/dist/orchestrator/templates/ai-instructions/claude-skill-delivery.md +10 -0
  71. package/dist/orchestrator/templates/ai-instructions/claude-skill-gherkin-syntax.md +12 -0
  72. package/dist/orchestrator/templates/ai-instructions/claude-skill-ingest-legacy.md +79 -0
  73. package/dist/orchestrator/templates/ai-instructions/github-skill-sungen-delivery.md +10 -0
  74. package/dist/orchestrator/templates/ai-instructions/github-skill-sungen-gherkin-syntax.md +12 -0
  75. package/dist/orchestrator/templates/ai-instructions/github-skill-sungen-ingest-legacy.md +79 -0
  76. package/package.json +3 -3
  77. package/src/cli/commands/audit.ts +13 -3
  78. package/src/cli/commands/delivery.ts +31 -15
  79. package/src/cli/commands/ingest.ts +141 -0
  80. package/src/cli/index.ts +2 -0
  81. package/src/dashboard/templates/index.html +54 -54
  82. package/src/generators/gherkin-parser/index.ts +17 -0
  83. package/src/generators/test-generator/adapters/playwright/templates/steps/assertions/all-contain-element.hbs +8 -0
  84. package/src/generators/test-generator/patterns/capture-patterns.ts +38 -0
  85. package/src/harness/audit.ts +18 -4
  86. package/src/harness/capability-plan.ts +11 -0
  87. package/src/harness/parse.ts +4 -0
  88. package/src/harness/provenance.ts +33 -0
  89. package/src/harness/sensors.ts +189 -0
  90. package/src/ingest/baseline-audit.ts +100 -0
  91. package/src/ingest/gsheet-fetch.ts +152 -0
  92. package/src/ingest/index.ts +5 -0
  93. package/src/ingest/legacy-parser.ts +184 -0
  94. package/src/ingest/reconcile.ts +80 -0
  95. package/src/ingest/to-gherkin.ts +108 -0
  96. package/src/orchestrator/ai-rules-updater.ts +2 -0
  97. package/src/orchestrator/templates/ai-instructions/claude-skill-delivery.md +10 -0
  98. package/src/orchestrator/templates/ai-instructions/claude-skill-gherkin-syntax.md +12 -0
  99. package/src/orchestrator/templates/ai-instructions/claude-skill-ingest-legacy.md +79 -0
  100. package/src/orchestrator/templates/ai-instructions/github-skill-sungen-delivery.md +10 -0
  101. package/src/orchestrator/templates/ai-instructions/github-skill-sungen-gherkin-syntax.md +12 -0
  102. package/src/orchestrator/templates/ai-instructions/github-skill-sungen-ingest-legacy.md +79 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.