sumulige-claude 1.0.7 → 1.0.9

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/AGENTS.md CHANGED
@@ -1,33 +1,92 @@
1
- # AGENTS
1
+ # AGENTS.md
2
2
 
3
3
  <skills_system priority="1">
4
4
 
5
- ## Available Skills
5
+ ## Multi-Agent Orchestration
6
6
 
7
- <!-- SKILLS_TABLE_START -->
8
- <usage>
9
- When users ask you to perform tasks, check if any of the available skills below can help complete the task more effectively. Skills provide specialized capabilities and domain knowledge.
7
+ This project uses **Sumulige Claude (SMC)** for intelligent multi-agent collaboration.
10
8
 
11
- How to use skills:
12
- - Invoke: Bash("openskills read <skill-name>")
13
- - The skill content will load with detailed instructions on how to complete the task
14
- - Base directory provided in output for resolving bundled resources (references/, scripts/, assets/)
9
+ ### Available Agents
15
10
 
16
- Usage notes:
17
- - Only use skills listed in <available_skills> below
18
- - Do not invoke a skill that is already loaded in your context
19
- - Each skill invocation is stateless
20
- </usage>
11
+ | Agent | Model | Role |
12
+ |-------|-------|------|
13
+ | **Conductor** | claude-opus-4.5 | Task coordination and decomposition |
14
+ | **Architect** | claude-opus-4.5 | Architecture design and technical decisions |
15
+ | **Builder** | claude-opus-4.5 | Code implementation and testing |
16
+ | **Reviewer** | claude-opus-4.5 | Code review and quality assurance |
17
+ | **Librarian** | claude-opus-4.5 | Documentation and knowledge management |
21
18
 
22
- <available_skills>
19
+ ### Usage
23
20
 
24
- <skill>
25
- <name>api-tester</name>
26
- <description></description>
27
- <location>project</location>
28
- </skill>
21
+ ```bash
22
+ # View agent status
23
+ smc status
29
24
 
30
- </available_skills>
31
- <!-- SKILLS_TABLE_END -->
25
+ # Run agent task
26
+ smc agent <task>
27
+
28
+ # List available skills
29
+ smc marketplace:list
30
+
31
+ # Install a skill
32
+ smc marketplace:install <skill-name>
33
+
34
+ # Sync external skills
35
+ smc marketplace:sync
36
+ ```
37
+
38
+ ---
39
+
40
+ ## Skills Marketplace
41
+
42
+ This project includes a curated skills marketplace with automatic synchronization from external repositories.
43
+
44
+ ### Categories
45
+
46
+ | Category | Description |
47
+ |----------|-------------|
48
+ | 🔧 **tools** | CLI tools and utilities |
49
+ | 💻 **development** | Language-specific dev assistance |
50
+ | ⚡ **productivity** | Workflow automation |
51
+ | 🤖 **automation** | Browser, CI/CD, system automation |
52
+ | 📊 **data** | Database, data processing |
53
+ | 📚 **documentation** | Docs, diagrams, specs |
54
+ | 🎼 **workflow** | Multi-agent orchestration |
55
+
56
+ ### Universal Compatibility
57
+
58
+ This project follows the **AGENTS.md** standard, adopted by 20,000+ repositories and natively supported by:
59
+ - Claude Code
60
+ - GitHub Copilot
61
+ - Google Gemini
62
+ - OpenAI Codex
63
+ - Factory Droid
64
+ - Cursor
65
+ - And more...
66
+
67
+ ### Quick Commands
68
+
69
+ ```bash
70
+ # Initialize SMC in your project
71
+ smc init
72
+
73
+ # Deploy Claude Code project template
74
+ smc template
75
+
76
+ # Start Manus-style project planning
77
+ smc kickoff
78
+ ```
79
+
80
+ ---
81
+
82
+ ## Project Template Features
83
+
84
+ When you run `smc template`, your project gets:
85
+
86
+ - **ThinkingLens** - Autonomous memory system for AI
87
+ - **Slash Commands** - `/commit`, `/test`, `/review`, `/pr`, etc.
88
+ - **RAG System** - Dynamic skill discovery based on task context
89
+ - **Hooks** - Automation for code formatting, TODO management, etc.
90
+ - **TODO System** - GTD-style task management
32
91
 
33
92
  </skills_system>