moicle 1.1.0 → 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 +20 -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
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
# MoiCle
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/moicle)
|
|
4
|
+
[](https://www.npmjs.com/package/moicle)
|
|
5
|
+
[](https://github.com/phuthuycoding/moicle/blob/master/LICENSE)
|
|
6
|
+
[](https://nodejs.org)
|
|
7
|
+
[](https://github.com/phuthuycoding/moicle)
|
|
8
|
+
|
|
3
9
|
> Reusable AI agents, commands, skills, and architecture references for Claude Code
|
|
4
10
|
|
|
11
|
+
**If you find this project useful, please consider giving it a ⭐ on [GitHub](https://github.com/phuthuycoding/moicle)!**
|
|
12
|
+
|
|
5
13
|
A toolkit to bootstrap and accelerate project development with Claude Code through specialized agents, automation commands, workflow skills, and unified architecture references.
|
|
6
14
|
|
|
7
15
|
## Features
|
|
8
16
|
|
|
9
17
|
- **15 AI Agents** - Specialized agents for each tech stack and task
|
|
10
18
|
- **3 Commands** - Automation wizards for project setup, brainstorming, and documentation
|
|
11
|
-
- **
|
|
19
|
+
- **12 Skills** - Auto-triggered workflows for feature development, hotfix, PR review, and more
|
|
12
20
|
- **7 Architecture References** - Clean Architecture patterns for all stacks
|
|
13
21
|
|
|
14
22
|
|
|
@@ -97,12 +105,22 @@ moicle install
|
|
|
97
105
|
| `/brainstorm` | Brainstorm ideas with 6 frameworks |
|
|
98
106
|
| `/doc` | Scan project and generate documentation |
|
|
99
107
|
|
|
100
|
-
### Skills (
|
|
108
|
+
### Skills (12)
|
|
101
109
|
|
|
102
110
|
| Skill | Trigger |
|
|
103
111
|
|-------|---------|
|
|
104
112
|
| `new-feature` | "implement feature", "add feature", "build feature" |
|
|
105
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" |
|
|
106
124
|
|
|
107
125
|
## Architecture-First Approach
|
|
108
126
|
|