mindforge-cc 11.7.0 → 11.7.1

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.
@@ -1,11 +1,11 @@
1
1
  {
2
- "version": "11.7.0",
2
+ "version": "11.7.1",
3
3
  "environment": "development",
4
4
  "governance": {
5
5
  "drift_threshold": 0.75,
6
6
  "critical_drift_threshold": 0.5,
7
7
  "res_threshold": 0.8,
8
- "active_did": "did:mindforge:5a2153fe-8744-4cc6-907d-bcfbdeca23a6"
8
+ "active_did": "did:mindforge:2a10db1a-ceef-4c2c-8fc1-bdc981d39b2f"
9
9
  },
10
10
  "revops": {
11
11
  "market_registry": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "pattern-library.jsonl": {
3
- "lastSync": "2026-06-23T07:35:45.738Z",
3
+ "lastSync": "2026-06-23T08:21:37.029Z",
4
4
  "localCount": 1
5
5
  }
6
6
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [11.7.1] - 2026-06-23 — Workflow Forge (patch)
4
+
5
+ Patch release: adds `bin/parse-workflow-args.js` (slash command argument splitter, produced by the tdd-sprint E2E run) and resolves 2 high-severity npm vulnerabilities in the tmp/inquirer dependency chain. No feature changes; all 94 tests pass.
6
+
7
+ ---
8
+
3
9
  ## [11.7.0] - 2026-06-23 — Workflow Forge
4
10
 
5
11
  First Dynamic Workflow Library for MindForge. Adds 12 pre-built multi-agent workflow scripts that users trigger via `/mindforge:wf-*` commands. Each workflow uses Claude Code's `Workflow` tool primitives (`parallel()`, `pipeline()`, `phase()`, `agent()`) for true fan-out concurrent agent execution with structured synthesis. Architecture follows adversarially-verified best practices: three-tier progressive disclosure, one-workflow-per-domain, predefined (not open-ended) patterns.
package/MINDFORGE.md CHANGED
@@ -3,10 +3,10 @@
3
3
  ## 1. IDENTITY & VERSIONING
4
4
 
5
5
  [NAME] = MindForge
6
- [VERSION] = 11.7.0
6
+ [VERSION] = 11.7.1
7
7
  [STABLE] = true
8
8
  [MODE] = "Platform Sovereign"
9
- [REQUIRED_CORE_VERSION] = 11.7.0
9
+ [REQUIRED_CORE_VERSION] = 11.7.1
10
10
  [SOVEREIGN_IDENTITY] = true
11
11
  [SRE_LAYER_ENABLED] = true
12
12
 
@@ -0,0 +1,47 @@
1
+ 'use strict';
2
+
3
+ /**
4
+ * parseWorkflowArgs — Slash-command argument splitter
5
+ *
6
+ * Parses a /mindforge:wf-<name> [args...] slash command string into a
7
+ * structured object containing the bare workflow name and the trimmed argument
8
+ * text.
9
+ *
10
+ * Format: /mindforge:wf-<workflowName>[ <args>]
11
+ * Example: /mindforge:wf-deep-research What is the future of AI?
12
+ * -> { workflowName: 'deep-research', args: 'What is the future of AI?' }
13
+ */
14
+
15
+ /** Matches /mindforge:wf-<name> with an optional trailing argument block. */
16
+ const SLASH_COMMAND_PATTERN = /^\/mindforge:wf-([\w-]+)(?:\s+([\s\S]*))?$/;
17
+
18
+ /**
19
+ * Split a /mindforge:wf-* slash command into workflowName and args.
20
+ *
21
+ * @param {string} input Raw slash command string from user input.
22
+ * @returns {{ workflowName: string, args: string }}
23
+ * @throws {TypeError} When input is not a string.
24
+ * @throws {RangeError} When input does not match the /mindforge:wf-* format.
25
+ */
26
+ function parseWorkflowArgs(input) {
27
+ if (typeof input !== 'string') {
28
+ throw new TypeError(`parseWorkflowArgs: expected a string, received ${typeof input}`);
29
+ }
30
+
31
+ const match = SLASH_COMMAND_PATTERN.exec(input);
32
+
33
+ if (match === null) {
34
+ throw new RangeError(
35
+ `parseWorkflowArgs: input does not match /mindforge:wf-<name> format — got: "${input}"`
36
+ );
37
+ }
38
+
39
+ const [, workflowName, rawArgs = ''] = match;
40
+
41
+ return {
42
+ workflowName,
43
+ args: rawArgs.trim(),
44
+ };
45
+ }
46
+
47
+ module.exports = { parseWorkflowArgs };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mindforge-cc",
3
- "version": "11.7.0",
3
+ "version": "11.7.1",
4
4
  "description": "MindForge \u2014 Sovereign Agentic Intelligence Framework. Sovereign Stability: Production-Hardened Agentic Intelligence (v11)",
5
5
  "bin": {
6
6
  "mindforge-cc": "bin/install.js",