@thecorporation/corp-tools 1.0.4 → 1.0.5
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 +4 -2
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# @thecorporation/corp-tools
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The shared foundation for TheCorporation's client ecosystem. Typed API client, 36 tool definitions, and the execution engine that powers the CLI, MCP server, and chat service. Every tool call — whether initiated by a human or an agent — flows through the same pipeline: validate, execute, commit, receipt.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Used by [`@thecorporation/cli`](https://www.npmjs.com/package/@thecorporation/cli), [`@thecorporation/mcp-server`](https://www.npmjs.com/package/@thecorporation/mcp-server), and the chat service.
|
|
6
|
+
|
|
7
|
+
Part of [TheCorporation](https://thecorporation.ai) — version-controlled governance, autonomous agents, and open-source corporate infrastructure.
|
|
6
8
|
|
|
7
9
|
## Install
|
|
8
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thecorporation/corp-tools",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Shared corporate tool handlers, API client, and types",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -17,10 +17,13 @@
|
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "tsup",
|
|
19
19
|
"dev": "tsup --watch",
|
|
20
|
+
"test": "vitest run",
|
|
21
|
+
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
20
22
|
"generate:tools": "python3 ../../scripts/dev/generate_tool_defs.py --api-url http://localhost:8000 > src/tool-defs.generated.ts",
|
|
21
23
|
"check:tools": "python3 ../../scripts/dev/check_tool_sync.py"
|
|
22
24
|
},
|
|
23
25
|
"devDependencies": {
|
|
26
|
+
"vitest": "^3.0.0",
|
|
24
27
|
"tsup": "^8.4.0",
|
|
25
28
|
"typescript": "^5.8.0",
|
|
26
29
|
"@types/node": "^22.0.0"
|