@telepat/ideon 0.1.32 → 0.1.33
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.de.md +121 -0
- package/README.md +7 -3
- package/README.zh-CN.md +3 -2
- package/dist/ideon.js +1701 -259
- package/package.json +1 -1
package/README.de.md
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
<p align="center"><img src="./assets/avatar/ideon-logo.webp" width="128" alt="Ideon"></p>
|
|
2
|
+
<h1 align="center">Ideon</h1>
|
|
3
|
+
<p align="center"><em>Verwandle eine Idee in Artikel, Threads und Social-Media-Beiträge. Hochwertige Inhalte ohne Token-Overhead.</em></p>
|
|
4
|
+
|
|
5
|
+
<p align="center">
|
|
6
|
+
<a href="https://docs.telepat.io/ideon">📖 Docs</a>
|
|
7
|
+
· <a href="./README.md">🇺🇸 English</a>
|
|
8
|
+
· <a href="./README.zh-CN.md">🇨🇳 简体中文</a>
|
|
9
|
+
· <a href="./README.de.md">🇩🇪 Deutsch</a>
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
<p align="center">
|
|
13
|
+
<a href="https://github.com/telepat-io/ideon/actions/workflows/ci.yml"><img src="https://github.com/telepat-io/ideon/actions/workflows/ci.yml/badge.svg?branch=main" alt="Build"></a>
|
|
14
|
+
<a href="https://codecov.io/gh/telepat-io/ideon"><img src="https://codecov.io/gh/telepat-io/ideon/graph/badge.svg" alt="Codecov"></a>
|
|
15
|
+
<a href="https://www.npmjs.com/package/@telepat/ideon"><img src="https://img.shields.io/npm/v/@telepat/ideon" alt="npm"></a>
|
|
16
|
+
<a href="https://github.com/telepat-io/ideon/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-yellow.svg" alt="License"></a>
|
|
17
|
+
</p>
|
|
18
|
+
|
|
19
|
+
Ideon ist ein KI-Content-Writer, der eine einzige Idee in veröffentlichungsreife Inhalte in verschiedenen Formaten, Stilen und Kanälen umwandelt. Beschreiben Sie Ihr Thema einmal und Ideon erzeugt einen Artikel sowie X-Threads, LinkedIn-Posts, Reddit-Posts, Newsletter und Blogbeiträge – alle mit einer einheitlichen Stimme und Strategie.
|
|
20
|
+
|
|
21
|
+
Entwickelt für Marketer, Gründer und schlanke Teams, die hochwertige Inhalte in großem Umfang bereitstellen müssen, ohne eine Idee für jeden Kanal manuell umzuschreiben.
|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
|
|
25
|
+
- **Einmal schreiben, überall veröffentlichen** — Eine Idee wird in einem einzigen Durchlauf zu Artikel, Blog, Newsletter, X-, LinkedIn- und Reddit-Posts. Der Artikel bildet das Fundament der Kampagne. Alles andere dient seiner Verbreitung.
|
|
26
|
+
- **Stil- und Intent-Steuerung** — 13 Stile × 13 Intents. Jedes Ergebnis teilt eine konsistente Stimme über alle Kanäle hinweg.
|
|
27
|
+
- **Recherchegestützte Links** — Ideon durchsucht das Web und fügt kontextbezogene externe Links ein, wie es ein menschlicher Autor tun würde. Keine manuelle Recherche.
|
|
28
|
+
- **SEO-optimierte Ausgabe** — On-Page-SEO, E-E-A-T-Glaubwürdigkeitssignale und Fakten-Dichte sind in die Schreib-Pipeline integriert. Inhalte, die sowohl in der klassischen Suche als auch in KI-generierten Zusammenfassungen ranken.
|
|
29
|
+
- **Beliebiges Modell via OpenRouter** — Nutzen Sie Claude, GPT-4 oder jedes unterstützte Modell. Wechseln Sie ohne Änderung Ihres Workflows.
|
|
30
|
+
- **Anleitunggestütztes Schreiben** — Prompt-Komposition basierend auf bewährten Schreibprinzipien, zusammengestellt aus echter Beratungspraxis. Kein generischer KI-Füllstoff.
|
|
31
|
+
- **Code-gesteuerte Effizienz** — Eine deterministische Pipeline übernimmt die Orchestrierung. Sie zahlen Tokens nur für die Textgenerierung.
|
|
32
|
+
- **Visuelles Storytelling** — Automatisch generierte Cover- und Inline-Bilder via Replicate für artikelgeführte Durchläufe.
|
|
33
|
+
- **Agent- und CI-fähig** — MCP-Server, nicht-interaktiver Modus, maschinenlesbare Konfiguration und fortsetzbare Durchläufe.
|
|
34
|
+
- **Google Keyword Planner** — Reale Keyword-Daten von Google Ads abrufen: Ideen, historische Metriken und Prognosen. Einrichtung mit `ideon gads login`, Abfrage mit `ideon gkp`.
|
|
35
|
+
|
|
36
|
+
## Quick Start
|
|
37
|
+
|
|
38
|
+
Installieren und erstes Content-Set generieren:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
npm i -g @telepat/ideon
|
|
42
|
+
ideon settings
|
|
43
|
+
ideon write "How small editorial teams can productionize AI writing" --primary article=1 --secondary x-post=1
|
|
44
|
+
ideon preview
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Erwartetes Ergebnis:
|
|
48
|
+
|
|
49
|
+
- Ein Generierungsordner wird unter `output/<timestamp>-<slug>/` angelegt.
|
|
50
|
+
- Eine oder mehrere veröffentlichungsreife Markdown-Ausgaben werden erzeugt.
|
|
51
|
+
- Analyse- und Metadaten-Artefakte werden für Überprüfung und Reproduzierbarkeit gespeichert.
|
|
52
|
+
- Die lokale Vorschau öffnet sich zur Prüfung von Inhalten, Links und generierten Assets.
|
|
53
|
+
|
|
54
|
+
## Requirements
|
|
55
|
+
|
|
56
|
+
- Node.js 20+
|
|
57
|
+
- npm 10+
|
|
58
|
+
- OpenRouter API-Key
|
|
59
|
+
- Replicate API-Token
|
|
60
|
+
|
|
61
|
+
## How It Works
|
|
62
|
+
|
|
63
|
+
Ideon durchläuft eine gestufte Schreib-Pipeline: Planung, Entwurf, Bild-Prompt-Erweiterung, Bildgenerierung, Kanalausgabeerzeugung und optionale Link-Anreicherung.
|
|
64
|
+
|
|
65
|
+
Es kombiniert Konfiguration aus Einstellungen, Umgebungsvariablen, Job-Dateien und CLI-Flags und schreibt strukturierte Artefakte für Nachvollziehbarkeit und Wiederverwendung.
|
|
66
|
+
|
|
67
|
+
Core commands:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
ideon settings
|
|
71
|
+
ideon config list --json
|
|
72
|
+
ideon write "An article idea" --primary article=1
|
|
73
|
+
ideon write --no-interactive --idea "An article idea" --primary article=1 --style technical --length medium
|
|
74
|
+
ideon write --job ./job.json
|
|
75
|
+
ideon write resume
|
|
76
|
+
ideon delete my-article-slug
|
|
77
|
+
ideon preview --no-open
|
|
78
|
+
ideon gads login
|
|
79
|
+
ideon gkp ideas --keywords seo,marketing
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
## Using With AI Agents
|
|
83
|
+
|
|
84
|
+
Ideon ist für agentische Workflows konzipiert:
|
|
85
|
+
|
|
86
|
+
- **MCP-Server** — `ideon mcp serve` stellt Tools über stdio bereit für Content-Generierung, Fortsetzung, Löschung, Konfigurationsverwaltung und Google Keyword Planner-Abfragen. Kompatibel mit Claude Code, ChatGPT, Gemini und jedem generischen MCP-Host.
|
|
87
|
+
- **Agent-Runtime-Registrierung** — `ideon agent install <runtime>` registriert Integrationsprofile für unterstützte Plattformen. Status prüfen mit `ideon agent status --json`.
|
|
88
|
+
- **Nicht-interaktiver Modus** — `ideon write --no-interactive ...` entfernt alle Prompts für CI und Automatisierung.
|
|
89
|
+
- **Maschinenlesbare Konfiguration** — `ideon config list --json` und `ideon config get <key> --json` für Agent-Inspektion.
|
|
90
|
+
- **Skill-Paket** — Installieren Sie `skill/ideon-cli/` in Ihren Agent-Host für einen vollständigen Lifecycle-Skill, der Installation, Einrichtung, Betrieb und Debugging abdeckt.
|
|
91
|
+
- **Agent-Dokumentation** — [For Agents](https://docs.telepat.io/ideon/for-agents) behandelt MCP-Server, Skills und Wartung.
|
|
92
|
+
|
|
93
|
+
## Security And Trust
|
|
94
|
+
|
|
95
|
+
- Secrets werden standardmäßig über `ideon settings` im OS-Keychain gespeichert.
|
|
96
|
+
- In CI- oder containerisierten Umgebungen nutzen Sie `TELEPAT_OPENROUTER_KEY` und `TELEPAT_REPLICATE_TOKEN`.
|
|
97
|
+
- Setzen Sie `TELEPAT_DISABLE_KEYTAR=true`, wenn kein Keychain-Zugriff verfügbar ist.
|
|
98
|
+
- Generierte Ausgaben können modellgenerierte Inhalte enthalten – prüfen Sie Inhalte vor der Veröffentlichung.
|
|
99
|
+
|
|
100
|
+
Um ein Sicherheitsproblem zu melden, öffnen Sie eine private Meldung über den Security-Workflow des Repositorys oder kontaktieren Sie die Maintainer über die Issue-Kanäle des Repositorys mit minimalen sensiblen Details.
|
|
101
|
+
|
|
102
|
+
## Documentation And Support
|
|
103
|
+
|
|
104
|
+
- [Documentation site](https://docs.telepat.io/ideon)
|
|
105
|
+
- [Quickstart](https://docs.telepat.io/ideon/getting-started/quickstart)
|
|
106
|
+
- [CLI reference](https://docs.telepat.io/ideon/reference/cli-reference)
|
|
107
|
+
- [Configuration guide](https://docs.telepat.io/ideon/guides/configuration)
|
|
108
|
+
- [Troubleshooting](https://docs.telepat.io/ideon/guides/troubleshooting)
|
|
109
|
+
- [For Agents](https://docs.telepat.io/ideon/for-agents)
|
|
110
|
+
- [Repository](https://github.com/telepat-io/ideon)
|
|
111
|
+
- [npm package](https://www.npmjs.com/package/@telepat/ideon)
|
|
112
|
+
|
|
113
|
+
## Contributing
|
|
114
|
+
|
|
115
|
+
Beiträge sind willkommen. Beginnen Sie mit [Development](https://docs.telepat.io/ideon/contributing/development) für Einrichtung, Workflow und Qualitätsgates, und folgen Sie dann [Releasing and Docs Deploy](https://docs.telepat.io/ideon/contributing/releasing-and-docs-deploy) für Details zu Release und Dokumentations-Deployment.
|
|
116
|
+
|
|
117
|
+
Bei Änderungen an der benutzerorientierten Dokumentation aktualisieren Sie sowohl englische als auch vereinfachte chinesische Inhalte in derselben Änderung.
|
|
118
|
+
|
|
119
|
+
## License
|
|
120
|
+
|
|
121
|
+
MIT. Siehe [LICENSE](./LICENSE).
|
package/README.md
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
<a href="https://docs.telepat.io/ideon">📖 Docs</a>
|
|
7
7
|
· <a href="./README.md">🇺🇸 English</a>
|
|
8
8
|
· <a href="./README.zh-CN.md">🇨🇳 简体中文</a>
|
|
9
|
+
· <a href="./README.de.md">🇩🇪 Deutsch</a>
|
|
9
10
|
</p>
|
|
10
11
|
|
|
11
12
|
<p align="center">
|
|
@@ -30,6 +31,7 @@ Built for marketers, founders, and lean teams who need to ship high-quality cont
|
|
|
30
31
|
- **Code-driven efficiency** — Deterministic pipeline code handles orchestration. You pay for tokens only when drafting prose.
|
|
31
32
|
- **Visual storytelling** — Auto-generated cover and inline images via Replicate for article-led runs.
|
|
32
33
|
- **Agent and CI ready** — MCP server, non-interactive mode, machine-readable config, and resumable runs.
|
|
34
|
+
- **Google Keyword Planner** — Query real keyword data from Google Ads: ideas, historical metrics, and forecasts. Set up with `ideon gads login`, query with `ideon gkp`.
|
|
33
35
|
|
|
34
36
|
## Quick Start
|
|
35
37
|
|
|
@@ -73,13 +75,15 @@ ideon write --job ./job.json
|
|
|
73
75
|
ideon write resume
|
|
74
76
|
ideon delete my-article-slug
|
|
75
77
|
ideon preview --no-open
|
|
78
|
+
ideon gads login
|
|
79
|
+
ideon gkp ideas --keywords seo,marketing
|
|
76
80
|
```
|
|
77
81
|
|
|
78
82
|
## Using With AI Agents
|
|
79
83
|
|
|
80
84
|
Ideon is built for agentic workflows:
|
|
81
85
|
|
|
82
|
-
- **MCP server** — `ideon mcp serve` exposes
|
|
86
|
+
- **MCP server** — `ideon mcp serve` exposes tools over stdio for content generation, resume, deletion, config management, and Google Keyword Planner queries. Compatible with Claude Code, ChatGPT, Gemini, and any generic MCP host.
|
|
83
87
|
- **Agent runtime registration** — `ideon agent install <runtime>` registers integration profiles for supported platforms. Check status with `ideon agent status --json`.
|
|
84
88
|
- **Non-interactive mode** — `ideon write --no-interactive ...` removes all prompts for CI and automation.
|
|
85
89
|
- **Machine-readable config** — `ideon config list --json` and `ideon config get <key> --json` for agent inspection.
|
|
@@ -89,8 +93,8 @@ Ideon is built for agentic workflows:
|
|
|
89
93
|
## Security And Trust
|
|
90
94
|
|
|
91
95
|
- Secrets are stored in the OS keychain by default via `ideon settings`.
|
|
92
|
-
- In CI or containerized environments, use `
|
|
93
|
-
- Set `
|
|
96
|
+
- In CI or containerized environments, use `TELEPAT_OPENROUTER_KEY` and `TELEPAT_REPLICATE_TOKEN`.
|
|
97
|
+
- Set `TELEPAT_DISABLE_KEYTAR=true` when keychain access is unavailable.
|
|
94
98
|
- Generated outputs can include model-produced content, so review content before publication.
|
|
95
99
|
|
|
96
100
|
To report a security issue, open a private report through the repository security flow or contact maintainers through repository issue channels with minimal sensitive detail.
|
package/README.zh-CN.md
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
<a href="https://docs.telepat.io/ideon">📖 文档</a>
|
|
7
7
|
· <a href="./README.md">🇺🇸 English</a>
|
|
8
8
|
· <a href="./README.zh-CN.md">🇨🇳 简体中文</a>
|
|
9
|
+
· <a href="./README.de.md">🇩🇪 Deutsch</a>
|
|
9
10
|
</p>
|
|
10
11
|
|
|
11
12
|
<p align="center">
|
|
@@ -89,8 +90,8 @@ Ideon 专为智能体工作流打造:
|
|
|
89
90
|
## 安全与信任
|
|
90
91
|
|
|
91
92
|
- 默认通过 `ideon settings` 将密钥保存到系统钥匙串。
|
|
92
|
-
- 在 CI 或容器环境中,请使用 `
|
|
93
|
-
- 在无法访问钥匙串时设置 `
|
|
93
|
+
- 在 CI 或容器环境中,请使用 `TELEPAT_OPENROUTER_KEY` 和 `TELEPAT_REPLICATE_TOKEN`。
|
|
94
|
+
- 在无法访问钥匙串时设置 `TELEPAT_DISABLE_KEYTAR=true`。
|
|
94
95
|
- 生成内容来自模型输出,发布前请进行人工审阅。
|
|
95
96
|
|
|
96
97
|
如需报告安全问题,请通过仓库安全报告通道私下提交,或通过仓库 issue 渠道联系维护者并避免包含敏感细节。
|