@inkeep/create-agents 0.22.8 → 0.22.11
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 +0 -6
- package/dist/utils.js +1 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -102,11 +102,6 @@ my-agent-directory/
|
|
|
102
102
|
pnpm inkeep push
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
-
5. **Test your agents:**
|
|
106
|
-
```bash
|
|
107
|
-
pnpm inkeep chat
|
|
108
|
-
```
|
|
109
|
-
|
|
110
105
|
## Available Services
|
|
111
106
|
|
|
112
107
|
After setup, you'll have access to:
|
|
@@ -121,7 +116,6 @@ After setup, you'll have access to:
|
|
|
121
116
|
- `pnpm db:migrate` - Apply database migrations
|
|
122
117
|
- `inkeep dev` - Start the Manage UI
|
|
123
118
|
- `inkeep push` - Deploy project configurations
|
|
124
|
-
- `inkeep chat` - Interactive chat with your agents
|
|
125
119
|
|
|
126
120
|
## Environment Variables
|
|
127
121
|
|
package/dist/utils.js
CHANGED
|
@@ -242,8 +242,7 @@ export const createAgents = async (args = {}) => {
|
|
|
242
242
|
`\n${color.yellow('Configuration:')}\n` +
|
|
243
243
|
` • Edit .env for environment variables\n` +
|
|
244
244
|
` • Edit files in src/projects/${projectId}/ for agent definitions\n` +
|
|
245
|
-
` • Use 'inkeep push' to deploy agents to the platform\n
|
|
246
|
-
` • Use 'inkeep chat' to test your agents locally\n`, 'Ready to go!');
|
|
245
|
+
` • Use 'inkeep push' to deploy agents to the platform\n`, 'Ready to go!');
|
|
247
246
|
}
|
|
248
247
|
catch (error) {
|
|
249
248
|
s.stop();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/create-agents",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.11",
|
|
4
4
|
"description": "Create an Inkeep Agent Framework project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"fs-extra": "^11.0.0",
|
|
35
35
|
"picocolors": "^1.0.0",
|
|
36
36
|
"drizzle-kit": "^0.31.5",
|
|
37
|
-
"@inkeep/agents-core": "0.22.
|
|
37
|
+
"@inkeep/agents-core": "0.22.11"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/degit": "^2.8.6",
|