@bonginkan/maria 4.3.10 → 4.3.12
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/README.md +5 -5
- package/dist/READY.manifest.json +1 -1
- package/dist/bin/maria.cjs +2295 -1718
- package/dist/bin/maria.cjs.map +1 -1
- package/dist/cli.cjs +2285 -1708
- package/dist/cli.cjs.map +1 -1
- package/dist/index.js +33 -9
- package/dist/index.js.map +1 -1
- package/dist/server/express-server.cjs +50 -4
- package/dist/server/express-server.js +50 -4
- package/dist/server-express.cjs +50 -4
- package/dist/server-express.cjs.map +1 -1
- package/package.json +7 -4
- package/src/slash-commands/READY.manifest.json +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bonginkan/maria",
|
|
3
|
-
"version": "4.3.
|
|
4
|
-
"description": "🚀 MARIA v4.3.
|
|
3
|
+
"version": "4.3.12",
|
|
4
|
+
"description": "🚀 MARIA v4.3.12 - Enterprise AI Development Platform with enhanced /image, /video, and /doctor output improvements. Features 74 production-ready commands with comprehensive fallback implementation, local LLM support, and zero external dependencies. Includes natural language coding, AI safety evaluation, intelligent evolution system, episodic memory with PII masking, and real-time monitoring dashboard. Built with TypeScript AST-powered code generation, OAuth2.0 + PKCE authentication, quantum-resistant cryptography, and enterprise-grade performance.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
7
7
|
"cli",
|
|
@@ -282,7 +282,7 @@
|
|
|
282
282
|
"type-check:types": "tsc -p tsconfig.json --noEmit",
|
|
283
283
|
"type-check:summary": "tsx scripts/syntax-check-summary.ts",
|
|
284
284
|
"precommit": "pnpm -s guard:vitest && tsx scripts/fix/underscore-normalize.ts --check && lint-staged",
|
|
285
|
-
"quality-gate": "pnpm lint:errors-only && pnpm type-check:syntax && node -e \"console.log('
|
|
285
|
+
"quality-gate": "pnpm lint:errors-only && pnpm type-check:syntax && node scripts/emoji-gate.cjs dist && node -e \"console.log('Quality gates passed')\"",
|
|
286
286
|
"quality-gate:ci": "pnpm lint:errors-only && pnpm type-check:syntax",
|
|
287
287
|
"quality-check": "bash scripts/check-quality-gates.sh",
|
|
288
288
|
"ready:baseline": "tsx scripts/check-ready-baseline.ts",
|
|
@@ -310,6 +310,9 @@
|
|
|
310
310
|
"perf:monitor": "node scripts/perf/continuous-monitor.mjs",
|
|
311
311
|
"perf:baseline": "node scripts/bundle-performance-monitor.mjs",
|
|
312
312
|
"test:safety-net": "vitest run tests/*safety*.test.ts tests/deprecation*.test.ts tests/phase3*.test.ts",
|
|
313
|
+
"test:help-wrap": "vitest run src/__tests__/wrap-snapshots.test.ts",
|
|
314
|
+
"test:help-modes": "vitest run src/__tests__/help-modes-snapshots.test.ts",
|
|
315
|
+
"test:help-all": "vitest run src/__tests__/wrap-snapshots.test.ts src/__tests__/help-modes-snapshots.test.ts",
|
|
313
316
|
"test:phase3": "vitest run tests/phase3-safety.test.ts",
|
|
314
317
|
"metrics:deprecation": "node -e \"console.log('Deprecation metrics would be shown here')\"",
|
|
315
318
|
"lint:fix:advanced": "tsx scripts/lint-fix-advanced.ts",
|
|
@@ -320,7 +323,7 @@
|
|
|
320
323
|
"fix:args:anon": "tsx scripts/fix/arg-anonymize-unused.ts",
|
|
321
324
|
"fix:all": "pnpm -s fix:underscores && pnpm -s fix:args && pnpm -s fix:args:anon",
|
|
322
325
|
"fix:quick": "pnpm -s fix:underscores && pnpm -s build && pnpm -s test:smoke",
|
|
323
|
-
"prepublishOnly": "pnpm -s build && node scripts/qc/assert-registry.mjs && npm run verify:manifest",
|
|
326
|
+
"prepublishOnly": "pnpm quality-gate && pnpm -s build && node scripts/qc/assert-registry.mjs && npm run verify:manifest",
|
|
324
327
|
"snapshot:help": "node scripts/qc/help-snapshot.js",
|
|
325
328
|
"ci:maria-md:gate": "node scripts/ci/verify-maria-md.mjs",
|
|
326
329
|
"ci:init-and-gate": "node dist/cli.cjs init --deep --budget-ms=90000 --parallel=8 && node scripts/ci/verify-maria-md.mjs",
|