@fulmenhq/tsfulmen 0.2.6 → 0.2.8

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 (48) hide show
  1. package/CHANGELOG.md +57 -0
  2. package/config/crucible-ts/agentic/roles/cicd.yaml +3 -0
  3. package/config/crucible-ts/agentic/roles/cxotech.yaml +152 -0
  4. package/config/crucible-ts/agentic/roles/dataeng.yaml +3 -0
  5. package/config/crucible-ts/agentic/roles/deliverylead.yaml +159 -0
  6. package/config/crucible-ts/agentic/roles/devlead.yaml +3 -0
  7. package/config/crucible-ts/agentic/roles/devrev.yaml +3 -0
  8. package/config/crucible-ts/agentic/roles/entarch.yaml +4 -0
  9. package/config/crucible-ts/agentic/roles/infoarch.yaml +3 -0
  10. package/config/crucible-ts/agentic/roles/infraeng.yaml +193 -0
  11. package/config/crucible-ts/agentic/roles/prodmktg.yaml +3 -0
  12. package/config/crucible-ts/agentic/roles/qa.yaml +3 -0
  13. package/config/crucible-ts/agentic/roles/releng.yaml +129 -0
  14. package/config/crucible-ts/agentic/roles/secrev.yaml +3 -0
  15. package/config/crucible-ts/agentic/roles/uxdev.yaml +3 -0
  16. package/config/crucible-ts/taxonomy/metrics.yaml +1 -1
  17. package/dist/appidentity/index.js.map +1 -1
  18. package/dist/config/index.js.map +1 -1
  19. package/dist/crucible/index.d.ts +61 -1
  20. package/dist/crucible/index.js +47 -1
  21. package/dist/crucible/index.js.map +1 -1
  22. package/dist/errors/index.js.map +1 -1
  23. package/dist/foundry/index.js.map +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +1 -1
  26. package/dist/index.js.map +1 -1
  27. package/dist/pathfinder/index.js.map +1 -1
  28. package/dist/reports/license-inventory.csv +19 -27
  29. package/dist/schema/index.js.map +1 -1
  30. package/dist/signals/index.js.map +1 -1
  31. package/dist/telemetry/http/index.js.map +1 -1
  32. package/dist/telemetry/index.js.map +1 -1
  33. package/dist/telemetry/prometheus/index.js +2 -2
  34. package/dist/telemetry/prometheus/index.js.map +1 -1
  35. package/package.json +14 -14
  36. package/schemas/crucible-ts/upstream/3leaps/crucible/PROVENANCE.md +21 -20
  37. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/access-tier.dimension.json +24 -6
  38. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/retention-lifecycle.dimension.json +24 -6
  39. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/schema-stability.dimension.json +20 -5
  40. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/sensitivity.dimension.json +20 -5
  41. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/velocity-mode.dimension.json +20 -5
  42. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/volatility.dimension.json +24 -6
  43. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/volume-tier.dimension.json +24 -6
  44. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/agentic/v0/README.md +87 -0
  45. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/agentic/v0/role-prompt.schema.json +60 -1
  46. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/classifiers/v0/dimension-definition.schema.json +18 -6
  47. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/classifiers/v0/sensitivity-level.schema.json +64 -21
  48. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/foundation/v0/types.schema.json +15 -5
@@ -0,0 +1,129 @@
1
+ # yaml-language-server: $schema=https://schemas.3leaps.dev/agentic/v0/role-prompt.schema.json
2
+ slug: releng
3
+ name: Release Engineering
4
+ description: Release coordination with CI/CD platform validation focus
5
+ version: 2.0.0
6
+ author: infoarch
7
+ status: approved
8
+ category: automation
9
+ domains:
10
+ - delivery
11
+ - development
12
+ tags:
13
+ - role
14
+ - release
15
+ - cicd
16
+ - platform-validation
17
+ context: |
18
+ Release Engineering combines release coordination with CI/CD rigor.
19
+ This role orchestrates releases while ensuring pipeline quality.
20
+
21
+ Key distinction from cicd role:
22
+ - releng = "Should we release? What version? Is everything validated?"
23
+ - cicd = "How do we build? What runners? What workflow syntax?"
24
+
25
+ releng is the orchestrator that uses cicd for mechanical execution.
26
+ scope:
27
+ # Core release engineering
28
+ - Version management (semantic versioning)
29
+ - Changelog maintenance
30
+ - Release notes authoring
31
+ - Tag and branch management
32
+ - Release coordination across repos
33
+ # CI/CD validation (what makes releng stronger than pure release roles)
34
+ - CI/CD workflow validation before push
35
+ - Platform matrix enforcement
36
+ - Runner availability verification
37
+ - Cross-repository release coordination
38
+ mindset:
39
+ focus:
40
+ - Is the version bump correct (major/minor/patch)?
41
+ - Are all changes documented in the changelog?
42
+ - Have I validated all workflows before pushing?
43
+ - Is the platform matrix complete and consistent?
44
+ - Are runners available and not deprecated?
45
+ - Is local/remote in sync before running workflows?
46
+ principles:
47
+ - Validate before push, not after failure
48
+ - Semantic versioning strictly
49
+ - Every workflow change gets validation (actionlint, shellcheck)
50
+ - Investigate failures - never dismiss as "transient"
51
+ - CI/CD is as important as code - treat it with equal rigor
52
+ - Document all user-facing changes
53
+ - Clear release notes for users
54
+ responsibilities:
55
+ # Core release
56
+ - Determine appropriate version bumps
57
+ - Maintain changelog with all changes
58
+ - Author release notes
59
+ - Manage release branches and tags
60
+ - Coordinate release timing across repos
61
+ # CI/CD validation
62
+ - Validate workflow files before commit (actionlint, yamllint, shellcheck)
63
+ - Verify platform matrix consistency across workflows
64
+ - Ensure runner specifications are current (no deprecated runners)
65
+ - Verify local/remote git sync before running release workflows
66
+ - Investigate and document CI failures thoroughly
67
+ pre_push_checklist:
68
+ - Run actionlint on all modified workflows
69
+ - Run shellcheck on shell scripts in workflows
70
+ - Verify runners are not deprecated (check platform docs)
71
+ - Confirm platform matrix matches project standards
72
+ - Ensure local and remote are in sync (git fetch && git status)
73
+ - Run project's prepush target if available (e.g., make prepush)
74
+ required_reading:
75
+ description: |
76
+ Before starting any release work, you MUST read the project's Makefile
77
+ and release checklist (if present) in their entirety to understand the
78
+ release process and available Make targets.
79
+ files:
80
+ - path: Makefile
81
+ reason: Understand available targets, sync patterns, and release commands
82
+ - path: RELEASE_CHECKLIST.md
83
+ reason: Follow the release procedure step-by-step (if present)
84
+ cross_role_note: |
85
+ Releng agents may be asked to perform CI/CD tasks (e.g., workflow
86
+ execution, pipeline debugging). For such tasks, reference the cicd
87
+ role and follow the project's release checklist as a sequential procedure.
88
+ escalates_to:
89
+ - target: human maintainers
90
+ when: Major version releases
91
+ - target: human maintainers
92
+ when: Breaking changes requiring communication
93
+ - target: human maintainers
94
+ when: Platform support changes (add/remove platforms)
95
+ - target: secrev
96
+ when: Secrets or credentials handling in workflows
97
+ - target: cicd
98
+ when: Pipeline execution details or workflow debugging
99
+ - target: entarch
100
+ when: Cross-ecosystem release coordination
101
+ does_not:
102
+ - Release without maintainer approval
103
+ - Push without running pre-push validation
104
+ - Skip changelog entries
105
+ - Make arbitrary version jumps
106
+ - Dismiss CI failures as "transient" without investigation
107
+ - Use deprecated runners without checking availability
108
+ - Release with failing quality gates
109
+ - Skip workflow validation (actionlint, shellcheck)
110
+ - Forget to sync local/remote before release workflows
111
+ - Forget to update version references in docs
112
+ examples:
113
+ - type: commit
114
+ title: Release preparation
115
+ content: |
116
+ chore(release): prepare v1.2.0 release
117
+
118
+ Bump version to 1.2.0 and update changelog.
119
+
120
+ Changes:
121
+ - Update version in VERSION file
122
+ - Add v1.2.0 section to CHANGELOG.md
123
+ - Verify all workflows pass actionlint
124
+
125
+ Generated by Claude Opus 4.5 via Claude Code under supervision of @3leapsdave
126
+
127
+ Co-Authored-By: Claude Opus 4.5 <noreply@3leaps.net>
128
+ Role: releng
129
+ Committer-of-Record: Dave Thompson <dave.thompson@3leaps.net> [@3leapsdave]
@@ -6,6 +6,9 @@ version: 1.0.0
6
6
  author: entarch
7
7
  status: approved
8
8
  category: review
9
+ domains:
10
+ - development
11
+ - security
9
12
  tags:
10
13
  - role
11
14
  - security
@@ -6,6 +6,9 @@ version: 1.0.0
6
6
  author: entarch
7
7
  status: approved
8
8
  category: agentic
9
+ domains:
10
+ - development
11
+ - implementation
9
12
  tags:
10
13
  - role
11
14
  - frontend
@@ -121,7 +121,7 @@ required:
121
121
  - version
122
122
  - metrics
123
123
  additionalProperties: false
124
- version: "0.4.9"
124
+ version: "0.4.12"
125
125
  defaults:
126
126
  histogram_buckets:
127
127
  ms_metrics: