@inkeep/agents-cli 0.48.4 → 0.48.6

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.
@@ -120,14 +120,6 @@ async function buildNextApp({ outputDir }) {
120
120
  scripts: { start: "node server.js" },
121
121
  dependencies: {}
122
122
  }, { spaces: 2 });
123
- await fs.writeFile(join(outputDir, "README.md"), `
124
- ## Environment Variables
125
-
126
- Make sure to set these in your Vercel project settings:
127
- - INKEEP_API_URL
128
- - INKEEP_TENANT_ID
129
- - Any other variables from your .env file
130
- `);
131
123
  s.stop(`Build created at ${outputDir}/`);
132
124
  console.log("");
133
125
  console.log(chalk.green("✅ Build completed successfully!"));
@@ -140,8 +132,6 @@ Make sure to set these in your Vercel project settings:
140
132
  console.log(chalk.gray(" cd"), chalk.white(outputDir));
141
133
  console.log(chalk.gray(" pnpm start"));
142
134
  console.log("");
143
- console.log(chalk.yellow("📖 See README.md for deployment instructions"));
144
- console.log("");
145
135
  } catch (error) {
146
136
  s.stop("Failed to build dashboard");
147
137
  console.error(chalk.red("Error:"), error instanceof Error ? error.message : "Unknown error");
@@ -173,49 +163,6 @@ async function exportNextApp({ outputDir }) {
173
163
  if ((await fs.stat(srcPath)).isDirectory()) await fs.copy(srcPath, destPath);
174
164
  else await fs.copy(srcPath, destPath);
175
165
  }
176
- await fs.writeFile(join(outputDir, "README.md"), `# Inkeep Dashboard
177
-
178
- This is an exported copy of the Inkeep Dashboard UI.
179
-
180
- ## Getting Started
181
-
182
- 1. Install dependencies:
183
- \`\`\`bash
184
- npm install
185
- # or
186
- pnpm install
187
- \`\`\`
188
-
189
- 2. Start the development server:
190
- \`\`\`bash
191
- npm run dev
192
- # or
193
- pnpm dev
194
- \`\`\`
195
-
196
- 3. Build for production:
197
- \`\`\`bash
198
- npm run build
199
- # or
200
- pnpm build
201
- \`\`\`
202
-
203
- ## Environment Variables
204
-
205
- Make sure to set these environment variables:
206
- - \`INKEEP_API_URL\` - Your Inkeep API URL
207
- - \`INKEEP_TENANT_ID\` - Your tenant ID
208
- - Any other variables from your .env file
209
-
210
- ## Deployment
211
-
212
- This project can be deployed to any platform that supports Next.js:
213
- - Vercel
214
- - Netlify
215
- - AWS Amplify
216
- - Railway
217
- - And more...
218
- `);
219
166
  s.stop(`Project exported to ${outputDir}/`);
220
167
  console.log("");
221
168
  console.log(chalk.green("✅ Export completed successfully!"));
@@ -225,8 +172,6 @@ This project can be deployed to any platform that supports Next.js:
225
172
  console.log(chalk.gray(" npm install"));
226
173
  console.log(chalk.gray(" npm run dev"));
227
174
  console.log("");
228
- console.log(chalk.yellow("📖 See README.md for more instructions"));
229
- console.log("");
230
175
  } catch (error) {
231
176
  s.stop("Failed to export project");
232
177
  console.error(chalk.red("Error:"), error instanceof Error ? error.message : "Unknown error");
@@ -61,6 +61,10 @@ async function promptForModelConfiguration() {
61
61
  label: "Claude Opus 4.1",
62
62
  value: ANTHROPIC_MODELS.CLAUDE_OPUS_4_1
63
63
  },
64
+ {
65
+ label: "Claude Sonnet 4.6",
66
+ value: ANTHROPIC_MODELS.CLAUDE_SONNET_4_6
67
+ },
64
68
  {
65
69
  label: "Claude Sonnet 4.5",
66
70
  value: ANTHROPIC_MODELS.CLAUDE_SONNET_4_5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-cli",
3
- "version": "0.48.4",
3
+ "version": "0.48.6",
4
4
  "description": "Inkeep CLI tool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -40,8 +40,8 @@
40
40
  "tsx": "^4.20.5",
41
41
  "yaml": "^2.7.0",
42
42
  "zod": "^4.3.6",
43
- "@inkeep/agents-core": "^0.48.4",
44
- "@inkeep/agents-sdk": "^0.48.4"
43
+ "@inkeep/agents-core": "^0.48.6",
44
+ "@inkeep/agents-sdk": "^0.48.6"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/degit": "^2.8.6",