Skip to content

Commit 8693b40

Browse files
ericyangpanclaude
andcommitted
feat(data): add Kiro CLI and Qoder extension manifests
Add two new product manifests: - Kiro CLI: Agentic AI development CLI with spec-driven development - Qoder: JetBrains extension with autonomous AI agents Both include multi-language support (en, zh-Hans, de) and complete metadata. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3038935 commit 8693b40

File tree

2 files changed

+163
-0
lines changed

2 files changed

+163
-0
lines changed

manifests/clis/kiro-cli.json

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
{
2+
"$schema": "../$schemas/cli.schema.json",
3+
"id": "kiro-cli",
4+
"name": "Kiro CLI",
5+
"description": "Agentic AI development CLI for building from prototype to production. Features spec-driven development, agent hooks, web search capabilities, and natural language coding assistance in your terminal.",
6+
"translations": {
7+
"zh-Hans": {
8+
"description": "用于从原型到生产的智能 AI 开发 CLI。具备规范驱动开发、代理钩子、网络搜索功能,以及终端中的自然语言编码辅助。"
9+
},
10+
"de": {
11+
"description": "Agentic AI-Entwicklungs-CLI für Prototyp bis Produktion. Mit Spec-driven Development, Agent-Hooks, Web-Suche und natürlichsprachlicher Codierungsunterstützung im Terminal."
12+
}
13+
},
14+
"verified": false,
15+
"websiteUrl": "https://kiro.dev",
16+
"docsUrl": "https://kiro.dev/docs/cli",
17+
"vendor": "AWS",
18+
"latestVersion": "1.21.0",
19+
"githubUrl": "https://github.com/kirodotdev/Kiro",
20+
"license": "Proprietary",
21+
"pricing": [
22+
{
23+
"name": "Free",
24+
"value": null,
25+
"currency": "USD",
26+
"per": "Month",
27+
"category": "Individual"
28+
},
29+
{
30+
"name": "Pro",
31+
"value": 20,
32+
"currency": "USD",
33+
"per": "Month",
34+
"category": "Individual"
35+
},
36+
{
37+
"name": "Pro+",
38+
"value": 40,
39+
"currency": "USD",
40+
"per": "Month",
41+
"category": "Individual"
42+
},
43+
{
44+
"name": "Power",
45+
"value": 200,
46+
"currency": "USD",
47+
"per": "Month",
48+
"category": "Individual"
49+
},
50+
{
51+
"name": "Enterprise",
52+
"value": null,
53+
"currency": "USD",
54+
"per": "Custom",
55+
"category": "Enterprise"
56+
}
57+
],
58+
"resourceUrls": {
59+
"download": "https://kiro.dev/downloads",
60+
"changelog": "https://kiro.dev/changelog",
61+
"pricing": "https://kiro.dev/pricing",
62+
"mcp": null,
63+
"issue": "https://github.com/kirodotdev/Kiro/issues"
64+
},
65+
"communityUrls": {
66+
"linkedin": null,
67+
"twitter": "https://x.com/kirodotdev",
68+
"github": "https://github.com/kirodotdev",
69+
"youtube": "https://www.youtube.com/@kirodotdev",
70+
"discord": "https://discord.gg/kirodotdev",
71+
"reddit": "https://www.reddit.com/r/kiroIDE",
72+
"blog": "https://kiro.dev/blog"
73+
},
74+
"relatedProducts": [
75+
{
76+
"type": "ide",
77+
"productId": "kiro"
78+
}
79+
],
80+
"platforms": [
81+
{
82+
"os": "macOS",
83+
"installCommand": "curl -fsSL https://cli.kiro.dev/install | bash",
84+
"launchCommand": "kiro-cli",
85+
"installPath": "~/.local/bin"
86+
},
87+
{
88+
"os": "Windows",
89+
"installCommand": null,
90+
"launchCommand": "kiro-cli",
91+
"installPath": null
92+
},
93+
{
94+
"os": "Linux",
95+
"installCommand": "curl -fsSL https://cli.kiro.dev/install | bash",
96+
"launchCommand": "kiro-cli",
97+
"installPath": "~/.local/bin"
98+
}
99+
]
100+
}

manifests/extensions/qoder.json

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"$schema": "../$schemas/extension.schema.json",
3+
"id": "qoder",
4+
"name": "Qoder",
5+
"description": "An agentic coding platform that brings autonomous AI agents to your IDE. Features code completion, Ask mode for debugging, and Agent mode for complex multi-step development tasks.",
6+
"translations": {
7+
"zh-Hans": {
8+
"description": "将自主 AI 代理引入 IDE 的智能编码平台。具备代码补全、问答模式用于调试,以及代理模式用于复杂的多步骤开发任务。"
9+
},
10+
"de": {
11+
"description": "Eine agentenbasierte Coding-Plattform, die autonome KI-Agenten in Ihre IDE bringt. Bietet Code-Vervollständigung, Ask-Modus für Debugging und Agent-Modus für komplexe mehrstufige Entwicklungsaufgaben."
12+
}
13+
},
14+
"verified": false,
15+
"websiteUrl": "https://qoder.com",
16+
"docsUrl": "https://docs.qoder.com",
17+
"vendor": "Alibaba",
18+
"latestVersion": "0.1.20",
19+
"githubUrl": null,
20+
"license": "Proprietary",
21+
"pricing": [
22+
{
23+
"name": "Free",
24+
"value": null,
25+
"currency": "USD",
26+
"per": "Month",
27+
"category": "Individual"
28+
}
29+
],
30+
"resourceUrls": {
31+
"download": "https://qoder.com/download",
32+
"changelog": "https://qoder.com/changelog",
33+
"pricing": "https://qoder.com/pricing",
34+
"mcp": null,
35+
"issue": null
36+
},
37+
"communityUrls": {
38+
"linkedin": null,
39+
"twitter": "https://x.com/Qoder_ai_ide",
40+
"github": "https://github.com/QoderAI",
41+
"youtube": "https://www.youtube.com/@qoder_ai",
42+
"discord": "https://discord.gg/NRpVfWbn",
43+
"reddit": "https://www.reddit.com/r/Qoder",
44+
"blog": "https://qoder.com/blog"
45+
},
46+
"relatedProducts": [
47+
{
48+
"type": "cli",
49+
"productId": "qoder-cli"
50+
},
51+
{
52+
"type": "ide",
53+
"productId": "qoder-ide"
54+
}
55+
],
56+
"supportedIdes": [
57+
{
58+
"ideId": "jetbrains",
59+
"marketplaceUrl": "https://plugins.jetbrains.com/plugin/28926-qoder--think-deeper-build-better-",
60+
"installUri": null
61+
}
62+
]
63+
}

0 commit comments

Comments
 (0)