letta-code 1.0.0
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 +15 -0
- package/index.js +18 -0
- package/package.json +16 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# letta-code
|
|
2
|
+
|
|
3
|
+
**👾 Beep boop! This is not the package you're looking for!**
|
|
4
|
+
|
|
5
|
+
The official Letta Code package is available at:
|
|
6
|
+
|
|
7
|
+
**[@letta-ai/letta-code](https://www.npmjs.com/package/@letta-ai/letta-code)**
|
|
8
|
+
|
|
9
|
+
Please install the correct package:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g @letta-ai/letta-code
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Or visit the official package page: https://www.npmjs.com/package/@letta-ai/letta-code
|
package/index.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.log(`
|
|
4
|
+
┌─────────────────────────────────────────────────────────────┐
|
|
5
|
+
│ │
|
|
6
|
+
│ 👾 Beep boop! This is not the package you're looking for! │
|
|
7
|
+
│ │
|
|
8
|
+
│ Please install the correct package: │
|
|
9
|
+
│ │
|
|
10
|
+
│ npm install -g @letta-ai/letta-code │
|
|
11
|
+
│ │
|
|
12
|
+
│ Official package: │
|
|
13
|
+
│ https://www.npmjs.com/package/@letta-ai/letta-code │
|
|
14
|
+
│ │
|
|
15
|
+
└─────────────────────────────────────────────────────────────┘
|
|
16
|
+
`);
|
|
17
|
+
|
|
18
|
+
process.exit(0);
|
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "letta-code",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Pointer to the official Letta Code package at @letta-ai/letta-code",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"letta-code": "./index.js"
|
|
8
|
+
},
|
|
9
|
+
"keywords": ["letta", "ai", "cli", "coding", "agent"],
|
|
10
|
+
"author": "Letta",
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/letta-ai/letta-code"
|
|
15
|
+
}
|
|
16
|
+
}
|