@telepat/ideon 0.1.15 → 0.1.16

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 CHANGED
@@ -1,4 +1,4 @@
1
- <p align="center"><img src="./ideon-logo.webp" width="128" alt="Ideon"></p>
1
+ <p align="center"><img src="./assets/avatar/ideon-logo.webp" width="128" alt="Ideon"></p>
2
2
  <h1 align="center">Ideon</h1>
3
3
  <p align="center"><em>One idea. Endless formats.</em></p>
4
4
 
package/README.zh-CN.md CHANGED
@@ -1,4 +1,4 @@
1
- <p align="center"><img src="./ideon-logo.webp" width="128" alt="Ideon"></p>
1
+ <p align="center"><img src="./assets/avatar/ideon-logo.webp" width="128" alt="Ideon"></p>
2
2
  <h1 align="center">Ideon</h1>
3
3
  <p align="center"><em>一个想法,无限格式。</em></p>
4
4
 
package/dist/ideon.js CHANGED
@@ -521,7 +521,7 @@ import { mkdir as mkdir3, readFile as readFile2, writeFile as writeFile3 } from
521
521
  import path4 from "path";
522
522
  import envPaths2 from "env-paths";
523
523
  import { z as z2 } from "zod";
524
- var supportedAgentRuntimeValues = ["claude", "chatgpt", "gemini", "generic-mcp"];
524
+ var supportedAgentRuntimeValues = ["claude", "claude-desktop", "chatgpt", "gemini", "codex", "cursor", "vscode", "opencode", "generic-mcp"];
525
525
  var integrationEntrySchema = z2.object({
526
526
  runtime: z2.enum(supportedAgentRuntimeValues),
527
527
  installedAt: z2.string(),
@@ -1208,7 +1208,6 @@ function compareStringArrays(drifts, id, actual, expected) {
1208
1208
  }
1209
1209
 
1210
1210
  // src/cli/commands/agent.ts
1211
- var unsupportedIdeRuntimeAliases = ["cursor", "vscode"];
1212
1211
  var defaultDependencies = {
1213
1212
  install: installAgentIntegration,
1214
1213
  uninstall: uninstallAgentIntegration,
@@ -1278,11 +1277,6 @@ async function collectAgentStatus(deps) {
1278
1277
  }
1279
1278
  function parseRuntime(rawRuntime) {
1280
1279
  const runtime = rawRuntime.trim().toLowerCase();
1281
- if (unsupportedIdeRuntimeAliases.includes(runtime)) {
1282
- throw new ReportedError(
1283
- `Unsupported runtime "${rawRuntime}". Ideon agent integration does not support Cursor or VS Code runtimes.`
1284
- );
1285
- }
1286
1280
  if (!supportedAgentRuntimeValues.includes(runtime)) {
1287
1281
  throw new ReportedError(
1288
1282
  `Unsupported runtime "${rawRuntime}". Supported runtimes: ${supportedAgentRuntimeValues.join(", ")}.`
@@ -1354,7 +1348,7 @@ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"
1354
1348
  // package.json
1355
1349
  var package_default = {
1356
1350
  name: "@telepat/ideon",
1357
- version: "0.1.15",
1351
+ version: "0.1.16",
1358
1352
  description: "CLI for generating rich articles and images from ideas.",
1359
1353
  type: "module",
1360
1354
  repository: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telepat/ideon",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "CLI for generating rich articles and images from ideas.",
5
5
  "type": "module",
6
6
  "repository": {