tracksec-sdk 0.0.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.
- package/README.md +9 -0
- package/index.js +3 -0
- package/package.json +13 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# tracksec-sdk
|
|
2
|
+
|
|
3
|
+
Reserved name for the **Track** agent-governance project. Placeholder, no functionality.
|
|
4
|
+
|
|
5
|
+
The real TypeScript/Node client ships as the scoped package
|
|
6
|
+
[`@agent-governance/sdk`](https://www.npmjs.com/package/@agent-governance/sdk).
|
|
7
|
+
This unscoped name mirrors the Python `tracksec-sdk` package and is held
|
|
8
|
+
defensively so it can't be squatted to impersonate the project. See
|
|
9
|
+
https://github.com/aholeishem/agent-governance
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tracksec-sdk",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Reserved name for the Track agent-governance project (placeholder release) — see @agent-governance/sdk for the real TypeScript client",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"keywords": ["placeholder", "reserved"],
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/aholeishem/agent-governance.git"
|
|
10
|
+
},
|
|
11
|
+
"files": ["README.md", "index.js"],
|
|
12
|
+
"main": "index.js"
|
|
13
|
+
}
|