continuous-improvement 3.9.1 → 3.9.2

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.
@@ -8,7 +8,7 @@
8
8
  {
9
9
  "name": "continuous-improvement",
10
10
  "description": "Stops Claude Code from skipping research, claiming 'done' without verifying, and repeating yesterday's mistakes. The 7 Laws of AI Agent Discipline — 13 enforcement skills, gating hooks, and the Mulahazah auto-leveling instinct engine.",
11
- "version": "3.9.0",
11
+ "version": "3.9.2",
12
12
  "source": "./plugins/continuous-improvement",
13
13
  "author": {
14
14
  "name": "naimkatiman"
@@ -1,5 +1,9 @@
1
+ import { readFileSync } from "node:fs";
2
+ import { dirname, join } from "node:path";
3
+ import { fileURLToPath } from "node:url";
1
4
  export const PACKAGE_NAME = "continuous-improvement";
2
- export const VERSION = "3.9.0";
5
+ const PKG_PATH = join(dirname(fileURLToPath(import.meta.url)), "..", "package.json");
6
+ export const VERSION = JSON.parse(readFileSync(PKG_PATH, "utf8")).version;
3
7
  export const PLUGIN_MODES = ["beginner", "expert"];
4
8
  const REPOSITORY_URL = "https://github.com/naimkatiman/continuous-improvement";
5
9
  const HOMEPAGE_URL = `${REPOSITORY_URL}#readme`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "continuous-improvement",
3
- "version": "3.9.1",
3
+ "version": "3.9.2",
4
4
  "description": "Stops Claude Code from skipping research, claiming 'done' without verifying, and repeating yesterday's mistakes. The 7 Laws of AI Agent Discipline — 13 enforcement skills, gating hooks, the Mulahazah auto-leveling instinct engine, and a GitHub Action transcript linter. Beginner: one /plugin install command. Expert: adds MCP tools and session hooks.",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "continuous-improvement",
3
- "version": "3.9.0",
3
+ "version": "3.9.2",
4
4
  "mode": "beginner",
5
5
  "description": "Beginner mode: see what your agent learned, list its instincts, and request a session reflection. Bundles four discipline skills (gateguard, para-memory-files, tdd-workflow, verification-loop) so research, memory, tests, and verification happen by default.",
6
6
  "tools": [
@@ -8,7 +8,7 @@
8
8
  {
9
9
  "name": "continuous-improvement",
10
10
  "description": "Stops Claude Code from skipping research, claiming 'done' without verifying, and repeating yesterday's mistakes. The 7 Laws of AI Agent Discipline — 13 enforcement skills, gating hooks, and the Mulahazah auto-leveling instinct engine.",
11
- "version": "3.9.0",
11
+ "version": "3.9.2",
12
12
  "source": "./",
13
13
  "author": {
14
14
  "name": "naimkatiman"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "continuous-improvement",
3
- "version": "3.9.0",
3
+ "version": "3.9.2",
4
4
  "description": "Stops Claude Code from skipping research, claiming 'done' without verifying, and repeating yesterday's mistakes. The 7 Laws of AI Agent Discipline — 13 enforcement skills, gating hooks, and the Mulahazah auto-leveling instinct engine.",
5
5
  "author": {
6
6
  "name": "naimkatiman",
@@ -1,5 +1,9 @@
1
+ import { readFileSync } from "node:fs";
2
+ import { dirname, join } from "node:path";
3
+ import { fileURLToPath } from "node:url";
1
4
  export const PACKAGE_NAME = "continuous-improvement";
2
- export const VERSION = "3.9.0";
5
+ const PKG_PATH = join(dirname(fileURLToPath(import.meta.url)), "..", "package.json");
6
+ export const VERSION = JSON.parse(readFileSync(PKG_PATH, "utf8")).version;
3
7
  export const PLUGIN_MODES = ["beginner", "expert"];
4
8
  const REPOSITORY_URL = "https://github.com/naimkatiman/continuous-improvement";
5
9
  const HOMEPAGE_URL = `${REPOSITORY_URL}#readme`;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "continuous-improvement",
3
- "version": "3.9.0",
3
+ "version": "3.9.2",
4
4
  "mode": "expert",
5
5
  "description": "Expert mode: tune confidence, manage instincts, and persist plans on disk. Adds safety, token-budget, and strategic-compact skills plus the /learn-eval command so long sessions stay disciplined and learnings survive context resets.",
6
6
  "tools": [