@metasession.co/devaudit-cli 0.1.76 → 0.3.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/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/sdlc/files/_common/1-plan-requirement.md +6 -456
- package/sdlc/files/_common/2-implement-and-test.md +6 -294
- package/sdlc/files/_common/3-compile-evidence.md +6 -809
- package/sdlc/files/_common/4-submit-for-review.md +7 -372
- package/sdlc/files/_common/5-deploy-main.md +6 -265
- package/sdlc/files/_common/implementing-an-sdlc-issue.md +7 -434
- package/sdlc/files/_common/scripts/close-out-release.sh +8 -1
- package/sdlc/files/_common/scripts/close-out-release.test.sh +59 -0
- package/sdlc/files/_common/scripts/derive-release-version.sh +2 -1
- package/sdlc/files/_common/scripts/derive-release-version.test.sh +29 -0
- package/sdlc/files/_common/scripts/validate-test-summary.sh +146 -0
- package/sdlc/files/_common/scripts/validate-test-summary.test.sh +268 -0
- package/sdlc/files/_common/skills/e2e-test-engineer/SKILL.md +28 -2
- package/sdlc/files/_common/skills/sdlc-implementer/SKILL.md +21 -2
- package/sdlc/files/ci/ci.yml.template +36 -1
- package/sdlc/files/ci/compliance-validation.yml.template +3 -0
- package/sdlc/files/stacks/node/hooks/pre-push +19 -0
- package/sdlc/package.json +21 -0
- package/sdlc/src/bin/devaudit-sdlc.js +95 -0
- package/sdlc/src/blueprints/1-plan-requirement.raw.md +464 -0
- package/sdlc/src/blueprints/2-implement-and-test.raw.md +314 -0
- package/sdlc/src/blueprints/3-compile-evidence.raw.md +817 -0
- package/sdlc/src/blueprints/4-submit-for-review.raw.md +379 -0
- package/sdlc/src/blueprints/5-deploy-main.raw.md +273 -0
- package/sdlc/src/blueprints/implementing-an-sdlc-issue.raw.md +441 -0
package/dist/index.js
CHANGED
|
@@ -56,7 +56,7 @@ function emitJsonResult(payload) {
|
|
|
56
56
|
|
|
57
57
|
// package.json
|
|
58
58
|
var package_default = {
|
|
59
|
-
version: "0.
|
|
59
|
+
version: "0.3.0"};
|
|
60
60
|
|
|
61
61
|
// src/lib/version.ts
|
|
62
62
|
var CLI_VERSION = package_default.version;
|
|
@@ -2399,6 +2399,7 @@ async function syncCiTemplates(ctx) {
|
|
|
2399
2399
|
}
|
|
2400
2400
|
var SENTINEL_ENTRIES = [
|
|
2401
2401
|
".e2e-gate-passed",
|
|
2402
|
+
".e2e-evidence-wired",
|
|
2402
2403
|
".sdlc-implementer-invoked"
|
|
2403
2404
|
];
|
|
2404
2405
|
var MARKER = "# DevAudit sentinel files (devaudit-installer#226)";
|