proagents 1.6.18 → 1.6.20
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/.claude/settings.local.json +13 -1
- package/.proagents/.cursorrules +25 -10
- package/.proagents/.windsurfrules +25 -10
- package/.proagents/AGENTS.md +32 -11
- package/.proagents/AI_INSTRUCTIONS.md +99 -30
- package/.proagents/BOLT.md +27 -10
- package/.proagents/CLAUDE.md +27 -10
- package/.proagents/GEMINI.md +27 -10
- package/.proagents/KIRO.md +27 -10
- package/.proagents/LOVABLE.md +27 -10
- package/.proagents/PROAGENTS.md +96 -341
- package/.proagents/REPLIT.md +27 -10
- package/.proagents/activity.log +1 -0
- package/.proagents/platforms.yaml +66 -0
- package/.proagents/prompts/00-project-setup.md +878 -0
- package/.proagents/prompts/04-planning.md +38 -0
- package/.proagents/prompts/12-rnd.md +957 -0
- package/.proagents/prompts/ai-add.md +80 -0
- package/.proagents/prompts/ai-list.md +41 -0
- package/.proagents/prompts/ai-remove.md +112 -0
- package/.proagents/prompts/ai-sync.md +96 -0
- package/.proagents/workflow-modes/entry-modes.md +27 -0
- package/.proagents/worklog/_context.template.md +47 -0
- package/COMMANDS.md +59 -0
- package/README.md +3 -1
- package/lib/commands/ai.js +100 -48
- package/lib/commands/init.js +32 -14
- package/package.json +1 -1
- package/.proagents/ANTIGRAVITY.md +0 -59
- package/.proagents/CHATGPT.md +0 -55
- package/.proagents/GROQ.md +0 -55
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# ProAgents Supported AI Platforms
|
|
2
|
+
# Single source of truth - used by code and AI assistants
|
|
3
|
+
#
|
|
4
|
+
# To add a new platform:
|
|
5
|
+
# 1. Add entry below with id, name, file, desc
|
|
6
|
+
# 2. Create the instruction file in .proagents/
|
|
7
|
+
# 3. Run: proagents ai add
|
|
8
|
+
|
|
9
|
+
ide:
|
|
10
|
+
label: "IDE-based AI Assistants"
|
|
11
|
+
platforms:
|
|
12
|
+
- id: claude
|
|
13
|
+
name: Claude Code
|
|
14
|
+
file: CLAUDE.md
|
|
15
|
+
desc: Anthropic Claude in terminal/IDE
|
|
16
|
+
|
|
17
|
+
- id: cursor
|
|
18
|
+
name: Cursor
|
|
19
|
+
file: .cursorrules
|
|
20
|
+
desc: Cursor AI IDE
|
|
21
|
+
|
|
22
|
+
- id: windsurf
|
|
23
|
+
name: Windsurf
|
|
24
|
+
file: .windsurfrules
|
|
25
|
+
desc: Codeium Windsurf IDE
|
|
26
|
+
|
|
27
|
+
- id: copilot
|
|
28
|
+
name: GitHub Copilot
|
|
29
|
+
file: .github/copilot-instructions.md
|
|
30
|
+
desc: GitHub Copilot
|
|
31
|
+
|
|
32
|
+
- id: kiro
|
|
33
|
+
name: AWS Kiro
|
|
34
|
+
file: KIRO.md
|
|
35
|
+
desc: AWS Kiro IDE
|
|
36
|
+
|
|
37
|
+
- id: gemini
|
|
38
|
+
name: Gemini
|
|
39
|
+
file: GEMINI.md
|
|
40
|
+
desc: Google Gemini / AI Studio
|
|
41
|
+
|
|
42
|
+
web:
|
|
43
|
+
label: "Web-based AI Platforms"
|
|
44
|
+
platforms:
|
|
45
|
+
- id: replit
|
|
46
|
+
name: Replit AI
|
|
47
|
+
file: REPLIT.md
|
|
48
|
+
desc: Replit Ghostwriter
|
|
49
|
+
|
|
50
|
+
- id: bolt
|
|
51
|
+
name: Bolt.new
|
|
52
|
+
file: BOLT.md
|
|
53
|
+
desc: StackBlitz Bolt
|
|
54
|
+
|
|
55
|
+
- id: lovable
|
|
56
|
+
name: Lovable
|
|
57
|
+
file: LOVABLE.md
|
|
58
|
+
desc: Lovable (GPT Engineer)
|
|
59
|
+
|
|
60
|
+
# Auto-handled platforms (use AGENTS.md, no separate file needed)
|
|
61
|
+
auto_handled:
|
|
62
|
+
- ChatGPT
|
|
63
|
+
- Groq
|
|
64
|
+
- Antigravity
|
|
65
|
+
- Codex CLI
|
|
66
|
+
- OpenAI API
|