@noir-ai/skills 1.4.0-beta.1 → 1.4.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,19 +1,19 @@
1
1
  # @noir-ai/skills
2
2
 
3
- The builtin `noir-*` skill pack (31 skills across SDD lifecycle, power, session, git, and domain categories) plus a copy-and-validate compiler. `noir init` / `noir sync` emit the pack to the host's skill directory idempotently. There is no plugin or marketplace — only native `noir-` builtins.
3
+ The native `noir-*` skill pack (33 builtins plus 1 integration) and a copy-and-validate compiler. `noir init` / `noir sync` emit it idempotently for hosts with a skill surface: Claude uses `.claude/skills/`; Cursor uses `.cursor/rules/*.mdc`. There is no plugin or marketplace.
4
4
 
5
5
  Part of the **[Noir](https://github.com/agaaaptr/noir#readme)** toolkit — the discipline, context, and memory layer for any agentic CLI.
6
6
 
7
7
  ## Install
8
8
 
9
9
  ```bash
10
- npm install @noir-ai/skills
10
+ npm install @noir-ai/skills@beta
11
11
  ```
12
12
 
13
13
  > Most users install the CLI instead, which emits the builtin skills via `noir init` / `noir sync`:
14
14
  >
15
15
  > ```bash
16
- > npm install -g @noir-ai/cli
16
+ > npm install -g @noir-ai/cli@beta
17
17
  > ```
18
18
 
19
19
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noir-ai/skills",
3
- "version": "1.4.0-beta.1",
3
+ "version": "1.4.0",
4
4
  "description": "Noir skills — the builtin noir-* skill pack, the integrations pack (ClickUp first), and a copy-and-validate compiler.",
5
5
  "license": "MIT",
6
6
  "author": "agaaaptr",
@@ -47,7 +47,7 @@
47
47
  "dependencies": {
48
48
  "yaml": "^2.5.0",
49
49
  "zod": "^4.2.0",
50
- "@noir-ai/core": "1.4.0-beta.1"
50
+ "@noir-ai/core": "1.4.0"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/node": "^26.1.1"