tinyclaw 1.0.0 → 1.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/.vscode/settings.json +4 -0
- package/README.md +21 -2
- package/package.json +10 -5
package/README.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
1
|
# tinyclaw
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
|
|
3
|
+
Official placeholder for the [TinyClaw](https://github.com/warengonzaga/tinyclaw) ecosystem.
|
|
4
|
+
All active packages live under the `@tinyclaw` scope.
|
|
5
|
+
|
|
6
|
+
## About
|
|
7
|
+
|
|
8
|
+
This npm package is reserved and maintained by [Waren Gonzaga](https://github.com/warengonzaga) to secure the `tinyclaw` name on the npm registry. It is not intended for direct installation or use — yet.
|
|
9
|
+
|
|
10
|
+
The **TinyClaw CLI** will be published under this package name once **v1** has been officially launched. Stay tuned!
|
|
11
|
+
|
|
12
|
+
For the actual TinyClaw project and all related packages, visit the official repository:
|
|
13
|
+
|
|
14
|
+
👉 **[github.com/warengonzaga/tinyclaw](https://github.com/warengonzaga/tinyclaw)**
|
|
15
|
+
|
|
16
|
+
## Disclaimer
|
|
17
|
+
|
|
18
|
+
The official and original TinyClaw is **not** built using shell script and is **not** a Claude Code wrapper. It is an ultra-minimal, self-improving AI companion built from the ground up with TypeScript. The TinyClaw CLI will serve as a tool to interact with and use the actual TinyClaw project. Please refer to the [official repository](https://github.com/warengonzaga/tinyclaw) for more details.
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
[MIT](https://opensource.org/licenses/MIT) - Waren Gonzaga
|
package/package.json
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinyclaw",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
7
|
},
|
|
8
|
-
"keywords": [],
|
|
9
|
-
"author": "",
|
|
10
|
-
"license": "
|
|
11
|
-
"description": ""
|
|
8
|
+
"keywords": ["tinyclaw", "ai", "agent", "cli", "companion"],
|
|
9
|
+
"author": "Waren Gonzaga",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"description": "Official placeholder for the TinyClaw ecosystem. The TinyClaw CLI is coming soon.",
|
|
12
|
+
"homepage": "https://github.com/warengonzaga/tinyclaw",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/warengonzaga/tinyclaw"
|
|
16
|
+
}
|
|
12
17
|
}
|