steering-cli 0.2.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 +12 -0
  2. package/bin.mjs +7 -0
  3. package/package.json +30 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # steering-cli
2
+
3
+ Short `npx` alias for [`@incu/steering`](https://www.npmjs.com/package/@incu/steering) —
4
+ a package manager for AI agent **steering files**.
5
+
6
+ ```bash
7
+ npx steering-cli add owner/repo
8
+ ```
9
+
10
+ This package contains no logic of its own; it simply runs the `@incu/steering`
11
+ CLI. See the [`@incu/steering`](https://www.npmjs.com/package/@incu/steering)
12
+ package for full documentation.
package/bin.mjs ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+
3
+ // Thin alias package so `npx steering-cli ...` works as a short invocation.
4
+ // All logic lives in @incu/steering (declared as a dependency); this just runs
5
+ // its CLI. Patches to @incu/steering are picked up via the "^" semver range
6
+ // without republishing this alias.
7
+ import '@incu/steering/cli';
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "steering-cli",
3
+ "version": "0.2.1",
4
+ "description": "npx alias for @incu/steering — package manager for AI agent steering files",
5
+ "type": "module",
6
+ "bin": {
7
+ "steering": "./bin.mjs"
8
+ },
9
+ "files": [
10
+ "bin.mjs",
11
+ "README.md"
12
+ ],
13
+ "keywords": [
14
+ "cli",
15
+ "steering",
16
+ "ai-agents",
17
+ "agent-context",
18
+ "kiro",
19
+ "cursor",
20
+ "claude-code"
21
+ ],
22
+ "engines": {
23
+ "node": ">=18"
24
+ },
25
+ "license": "MIT",
26
+ "author": "Incu",
27
+ "dependencies": {
28
+ "@incu/steering": "^0.2.1"
29
+ }
30
+ }