aiwg 2026.2.9 → 2026.2.10
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.
|
@@ -85,14 +85,19 @@ grep '"version"' package.json | grep -E '\.[0-9]{2}\.' && echo "ERROR: Leading z
|
|
|
85
85
|
### 3. Create and Push Tag
|
|
86
86
|
|
|
87
87
|
```bash
|
|
88
|
+
# Create signed release commit (if not already committed)
|
|
89
|
+
git commit -S -m "release: v2026.1.5 \"Release Name\""
|
|
90
|
+
|
|
88
91
|
# Create annotated tag
|
|
89
|
-
git tag -
|
|
92
|
+
git tag -s v2026.1.5 -m "v2026.1.5 - Release Name"
|
|
90
93
|
|
|
91
94
|
# Push to both remotes
|
|
92
95
|
git push origin main --tags
|
|
93
96
|
git push github main --tags
|
|
94
97
|
```
|
|
95
98
|
|
|
99
|
+
**Sandboxed agent note**: If release operations run inside a filesystem/network sandbox, request **escalated execution** for signed `git commit`/`git tag` commands so GPG can access `~/.gnupg` and the local gpg-agent socket.
|
|
100
|
+
|
|
96
101
|
### 4. Verify Published Version
|
|
97
102
|
|
|
98
103
|
After CI/CD completes:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aiwg",
|
|
3
|
-
"version": "2026.2.
|
|
3
|
+
"version": "2026.2.10",
|
|
4
4
|
"description": "Cognitive architecture for AI-augmented software development with structured memory, ensemble validation, and closed-loop correction. FAIR-aligned artifacts, 84% cost reduction via human-in-the-loop, standards adopted by 100+ organizations.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|