pumuki 6.3.299 → 6.3.300
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/CHANGELOG.md +4 -0
- package/VERSION +1 -1
- package/integrations/lifecycle/cli.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [6.3.300] - 2026-05-19
|
|
4
|
+
|
|
5
|
+
- CLI: `pumuki --version` and `pumuki -v` now return the effective package version with exit code `0` without invoking lifecycle status, audit, gates, notifications or evidence writes. This prevents consumer repin checks from mutating `.ai_evidence.json` just to read the installed version.
|
|
6
|
+
|
|
3
7
|
## [6.3.298] - 2026-05-19
|
|
4
8
|
|
|
5
9
|
## [6.3.299] - 2026-05-19
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.3.
|
|
1
|
+
6.3.300
|
|
@@ -192,6 +192,7 @@ export type ParsedArgs = {
|
|
|
192
192
|
|
|
193
193
|
const HELP_TEXT = `
|
|
194
194
|
Pumuki lifecycle commands:
|
|
195
|
+
pumuki --version | -v
|
|
195
196
|
pumuki bootstrap [--enterprise] [--agent=<name>] [--json]
|
|
196
197
|
pumuki install [--with-mcp] [--agent=<name>]
|
|
197
198
|
pumuki uninstall [--purge-artifacts]
|
|
@@ -2255,6 +2256,11 @@ export const runLifecycleCli = async (
|
|
|
2255
2256
|
dependencies: Partial<LifecycleCliDependencies> = {}
|
|
2256
2257
|
): Promise<number> => {
|
|
2257
2258
|
try {
|
|
2259
|
+
if (argv.length === 1 && (argv[0] === '--version' || argv[0] === '-v')) {
|
|
2260
|
+
writeInfo(getCurrentPumukiVersion());
|
|
2261
|
+
return 0;
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2258
2264
|
const activeDependencies: LifecycleCliDependencies = {
|
|
2259
2265
|
...defaultLifecycleCliDependencies,
|
|
2260
2266
|
...dependencies,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.300",
|
|
4
4
|
"description": "Enterprise-grade AST Intelligence System with multi-platform support (iOS, Android, Backend, Frontend) and Feature-First + DDD + Clean Architecture enforcement. Includes dynamic violations API for intelligent querying.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|