@zalom/plastic 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/bin/install.js +13 -0
- package/package.json +14 -0
package/bin/install.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.log(`
|
|
4
|
+
Plastic has no stable release yet.
|
|
5
|
+
|
|
6
|
+
Install the alpha channel:
|
|
7
|
+
npx @zalom/plastic@alpha --claude
|
|
8
|
+
|
|
9
|
+
Or the beta channel (when available):
|
|
10
|
+
npx @zalom/plastic@beta --claude
|
|
11
|
+
|
|
12
|
+
Learn more: https://github.com/zalom/plastic
|
|
13
|
+
`)
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zalom/plastic",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Intent-driven idea development system for AI coding agents — no stable release yet",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"plastic": "bin/install.js"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/zalom/plastic"
|
|
13
|
+
}
|
|
14
|
+
}
|