steering.sh 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.
- package/README.md +12 -0
- package/bin.mjs +7 -0
- package/package.json +30 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# steering.sh
|
|
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.sh 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.sh ...` works as a short, brandable
|
|
4
|
+
// invocation. All logic lives in @incu/steering (declared as a dependency);
|
|
5
|
+
// this just runs its CLI. Patches to @incu/steering are picked up via the
|
|
6
|
+
// "^" semver range without republishing this alias.
|
|
7
|
+
import '@incu/steering/cli';
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "steering.sh",
|
|
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
|
+
}
|