moost 0.5.32 → 0.6.0
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 +21 -0
- package/dist/index.cjs +743 -271
- package/dist/index.d.ts +298 -116
- package/dist/index.mjs +680 -254
- package/package.json +39 -33
- package/scripts/setup-skills.js +76 -0
- package/skills/moost/SKILL.md +34 -0
- package/skills/moost/core.md +174 -0
- package/skills/moost/custom-adapters.md +744 -0
- package/skills/moost/decorators.md +185 -0
- package/skills/moost/di.md +161 -0
- package/skills/moost/interceptors.md +199 -0
- package/skills/moost/pipes.md +213 -0
package/README.md
CHANGED
|
@@ -28,6 +28,27 @@ Here's what sets Moost apart from NestJS:
|
|
|
28
28
|
|
|
29
29
|
## [Official Documentation](https://moost.org/)
|
|
30
30
|
|
|
31
|
+
## AI Agent Skills
|
|
32
|
+
|
|
33
|
+
This package ships with AI agent skills that provide context-aware documentation to AI coding assistants (Claude Code, Cursor, Windsurf, Codex, OpenCode).
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
# Project-local (recommended — version-locked, commits with your repo)
|
|
37
|
+
npx moost-skill
|
|
38
|
+
|
|
39
|
+
# Global (available across all your projects)
|
|
40
|
+
npx moost-skill --global
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
To auto-install on `npm install`, add to your `package.json`:
|
|
44
|
+
```json
|
|
45
|
+
{
|
|
46
|
+
"scripts": {
|
|
47
|
+
"postinstall": "moost-skill --postinstall"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
```
|
|
51
|
+
|
|
31
52
|
## Contributing
|
|
32
53
|
|
|
33
54
|
We are excited to welcome contributors who are passionate about improving Moostjs. No matter your level of experience, your unique perspective and skills can make valuable contributions to our growing community.
|