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/.claude/sessions/active-sessions.json +1 -444
- package/.claude/settings.local.json +24 -1
- package/.claude-plugin/marketplace.json +71 -0
- package/.github/workflows/sync-skills.yml +74 -0
- package/AGENTS.md +81 -22
- package/README.md +140 -720
- package/cli.js +34 -1
- package/config/skill-categories.json +40 -0
- package/docs/DEVELOPMENT.md +423 -0
- package/docs/MARKETPLACE.md +352 -0
- package/lib/marketplace.js +486 -0
- package/package.json +10 -4
- package/scripts/sync-external.mjs +298 -0
- package/scripts/update-registry.mjs +325 -0
- package/sources.yaml +83 -0
- package/template/.claude/hooks/conversation-logger.cjs +222 -0
- package/template/.claude/settings.json +5 -0
package/AGENTS.md
CHANGED
|
@@ -1,33 +1,92 @@
|
|
|
1
|
-
# AGENTS
|
|
1
|
+
# AGENTS.md
|
|
2
2
|
|
|
3
3
|
<skills_system priority="1">
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Multi-Agent Orchestration
|
|
6
6
|
|
|
7
|
-
|
|
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
|
-
|
|
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
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
-
|
|
20
|
-
|
|
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
|
-
|
|
19
|
+
### Usage
|
|
23
20
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
<location>project</location>
|
|
28
|
-
</skill>
|
|
21
|
+
```bash
|
|
22
|
+
# View agent status
|
|
23
|
+
smc status
|
|
29
24
|
|
|
30
|
-
|
|
31
|
-
|
|
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>
|