moicle 1.1.1 → 1.1.2
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.md +12 -2
- package/assets/architecture/go-backend.md +930 -108
- package/assets/commands/brainstorm.md +1 -0
- package/assets/skills/api-integration/SKILL.md +883 -0
- package/assets/skills/deprecation/SKILL.md +923 -0
- package/assets/skills/documentation/SKILL.md +1333 -0
- package/assets/skills/fix-pr-comment/SKILL.md +283 -0
- package/assets/skills/go-module/SKILL.md +77 -0
- package/assets/skills/incident-response/SKILL.md +946 -0
- package/assets/skills/onboarding/SKILL.md +607 -0
- package/assets/skills/pr-review/SKILL.md +620 -0
- package/assets/skills/refactor/SKILL.md +756 -0
- package/assets/skills/spike/SKILL.md +535 -0
- package/assets/skills/tdd/SKILL.md +828 -0
- package/bin/cli.js +2 -1
- package/dist/commands/install.d.ts.map +1 -1
- package/dist/commands/install.js +20 -2
- package/dist/commands/install.js.map +1 -1
- package/dist/utils/symlink.d.ts +1 -0
- package/dist/utils/symlink.d.ts.map +1 -1
- package/dist/utils/symlink.js +1 -0
- package/dist/utils/symlink.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ A toolkit to bootstrap and accelerate project development with Claude Code throu
|
|
|
16
16
|
|
|
17
17
|
- **15 AI Agents** - Specialized agents for each tech stack and task
|
|
18
18
|
- **3 Commands** - Automation wizards for project setup, brainstorming, and documentation
|
|
19
|
-
- **
|
|
19
|
+
- **12 Skills** - Auto-triggered workflows for feature development, hotfix, PR review, and more
|
|
20
20
|
- **7 Architecture References** - Clean Architecture patterns for all stacks
|
|
21
21
|
|
|
22
22
|
|
|
@@ -105,12 +105,22 @@ moicle install
|
|
|
105
105
|
| `/brainstorm` | Brainstorm ideas with 6 frameworks |
|
|
106
106
|
| `/doc` | Scan project and generate documentation |
|
|
107
107
|
|
|
108
|
-
### Skills (
|
|
108
|
+
### Skills (12)
|
|
109
109
|
|
|
110
110
|
| Skill | Trigger |
|
|
111
111
|
|-------|---------|
|
|
112
112
|
| `new-feature` | "implement feature", "add feature", "build feature" |
|
|
113
113
|
| `hotfix` | "fix bug", "hotfix", "urgent fix", "production issue" |
|
|
114
|
+
| `pr-review` | "review pr", "check pr", "review code" |
|
|
115
|
+
| `release` | "release", "deploy", "ship" |
|
|
116
|
+
| `refactor` | "refactor", "clean up", "improve code" |
|
|
117
|
+
| `tdd` | "tdd", "test first", "test driven" |
|
|
118
|
+
| `onboarding` | "explain codebase", "onboard", "new to project" |
|
|
119
|
+
| `spike` | "spike", "research", "prototype", "poc" |
|
|
120
|
+
| `documentation` | "document", "generate docs", "write docs" |
|
|
121
|
+
| `api-integration` | "integrate api", "add endpoint", "new api" |
|
|
122
|
+
| `incident-response` | "incident", "outage", "production down" |
|
|
123
|
+
| `deprecation` | "deprecate", "remove feature", "sunset" |
|
|
114
124
|
|
|
115
125
|
## Architecture-First Approach
|
|
116
126
|
|