@mgvdev/nestjs-ai 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +6 -1
package/README.md CHANGED
@@ -8,9 +8,10 @@ Inspired by [Laravel AI](https://github.com/laravel/ai): a consistent,
8
8
  framework-native interface over multiple providers (OpenAI, Anthropic, Google).
9
9
 
10
10
  > **Docs:** full guides live in [`documentation/`](./documentation/README.md).
11
- > A bundled Claude Code skill lives at [`skill/nestjs-ai/SKILL.md`](./skill/nestjs-ai/SKILL.md)
12
- > copy it to `.claude/skills/nestjs-ai/` (or symlink from `node_modules/@mgvdev/nestjs-ai/skill/nestjs-ai`)
13
- > to let Claude build with this library.
11
+ > A bundled skill lives at [`skill/nestjs-ai/SKILL.md`](./skill/nestjs-ai/SKILL.md). It is
12
+ > discovered automatically by [nest-boost](https://nestjs.mgvdev.io/nest-boost) via the
13
+ > `nestBoost.skills` field in `package.json`. For raw Claude Code, copy it to
14
+ > `.claude/skills/nestjs-ai/` (or symlink from `node_modules/@mgvdev/nestjs-ai/skill/nestjs-ai`).
14
15
 
15
16
  - 🧩 **`@Agent` / `@Tool` decorators** — agents and tools are ordinary NestJS
16
17
  providers, so they can inject repositories, services, config, anything.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mgvdev/nestjs-ai",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Structured AI toolkit for NestJS — agents, tools, structured output, streaming and embeddings on top of the Vercel AI SDK.",
5
5
  "author": "Maxence Guyonvarho",
6
6
  "license": "MIT",
@@ -48,6 +48,11 @@
48
48
  "README.md",
49
49
  "LICENSE"
50
50
  ],
51
+ "nestBoost": {
52
+ "skills": [
53
+ "skill"
54
+ ]
55
+ },
51
56
  "scripts": {
52
57
  "build": "tsup",
53
58
  "dev": "tsup --watch",