groundrules 0.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 (3) hide show
  1. package/README.md +14 -0
  2. package/index.js +13 -0
  3. package/package.json +15 -0
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # groundrules
2
+
3
+ > Bootstrap your projects with best practices of documentation and configuration.
4
+
5
+ This npm package name is held by the [groundrules project](https://github.com/lozit/groundrules)
6
+ (formerly `starter-kit`). The tool is currently distributed as a **Claude Code plugin**:
7
+
8
+ ```
9
+ /plugin marketplace add https://github.com/lozit/groundrules
10
+ /plugin install groundrules@claude-code-groundrules
11
+ ```
12
+
13
+ Running `npx groundrules` prints this pointer. Support for other harnesses
14
+ (and possibly a real npm CLI) is a post-1.0 direction — watch the repo.
package/index.js ADDED
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env node
2
+ console.log(`
3
+ groundrules — bootstrap your projects with best practices of documentation and configuration.
4
+
5
+ This npm name is held by the groundrules project. The tool is currently
6
+ distributed as a Claude Code plugin:
7
+
8
+ /plugin marketplace add https://github.com/lozit/groundrules
9
+ /plugin install groundrules@claude-code-groundrules
10
+
11
+ Support for other harnesses (and possibly an npm CLI) is planned post-1.0.
12
+ -> https://github.com/lozit/groundrules
13
+ `);
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "groundrules",
3
+ "version": "0.0.1",
4
+ "description": "Name reserved for the groundrules project — bootstrap your projects with best practices of documentation and configuration. Currently distributed as a Claude Code plugin.",
5
+ "homepage": "https://github.com/lozit/groundrules",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/lozit/groundrules.git"
9
+ },
10
+ "author": "Guillaume Ferrari <guillaume.ferrari@protonmail.com>",
11
+ "license": "UNLICENSED",
12
+ "keywords": ["groundrules", "bootstrap", "best-practices", "claude-code"],
13
+ "bin": { "groundrules": "./index.js" },
14
+ "files": ["index.js", "README.md"]
15
+ }