compose-agentsmd 2.0.0 → 2.0.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 +2 -15
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,10 +6,7 @@ This repository contains CLI tooling for composing per-project `AGENTS.md` files
6
6
 
7
7
  See `CHANGELOG.md` for release notes.
8
8
 
9
- It is intended to be used together with shared rule modules such as:
10
-
11
- - `agent-rules/` (public rule modules)
12
- - `agent-rules-private/` (optional, private-only rule modules)
9
+ It is intended to be used together with shared rule modules such as the public `agent-rules` repository.
13
10
 
14
11
  ## Install (global CLI)
15
12
 
@@ -23,17 +20,7 @@ This provides the `compose-agentsmd` command.
23
20
 
24
21
  ## Rules setup (this repository)
25
22
 
26
- This repository expects the public rules to be available at `agent-rules/rules` via the `agent-rules/` submodule.
27
-
28
- Initialize submodules and compose the rules:
29
-
30
- ```sh
31
- git submodule update --init --recursive
32
- npm install
33
- npm run compose
34
- ```
35
-
36
- The default ruleset for this repository is `agent-ruleset.json` and currently composes the `node` domain into `AGENTS.md`.
23
+ The default ruleset for this repository is `agent-ruleset.json` and currently composes the `node` domain into `AGENTS.md` from the shared GitHub source.
37
24
 
38
25
  ## Compose
39
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compose-agentsmd",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "CLI tools for composing per-project AGENTS.md files from modular rule sets",
5
5
  "license": "MIT",
6
6
  "repository": {