create-t2k 0.4.3 → 0.4.4
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
CHANGED
|
@@ -5,7 +5,7 @@ a Decision Context, two executable policies, and disjoint replay evidence.
|
|
|
5
5
|
The existing decision-loop project remains the default profile.
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx create-t2k@0.4.
|
|
8
|
+
npx create-t2k@0.4.4 my-decision-loop
|
|
9
9
|
cd my-decision-loop
|
|
10
10
|
npm start
|
|
11
11
|
```
|
|
@@ -43,7 +43,7 @@ reward evaluation to an MCP host, add:
|
|
|
43
43
|
"mcpServers": {
|
|
44
44
|
"t2k": {
|
|
45
45
|
"command": "npx",
|
|
46
|
-
"args": ["-y", "@t2kai/mcp@0.3.
|
|
46
|
+
"args": ["-y", "@t2kai/mcp@0.3.1"]
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
}
|
|
@@ -56,7 +56,7 @@ before enabling database access or agent writes.
|
|
|
56
56
|
Use `--no-install` to generate files without running `npm install`:
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
npx create-t2k@0.4.
|
|
59
|
+
npx create-t2k@0.4.4 my-decision-loop --no-install
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
The normal command installs dependencies for you. Run `npm install` inside the
|
|
@@ -70,7 +70,7 @@ is required.
|
|
|
70
70
|
Generate a focused, fully synthetic source-integration project explicitly:
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
|
-
npx create-t2k@0.4.
|
|
73
|
+
npx create-t2k@0.4.4 my-integration-hub --profile integration-hub
|
|
74
74
|
cd my-integration-hub
|
|
75
75
|
npm start
|
|
76
76
|
```
|
package/package.json
CHANGED