yam-harness 0.1.0 → 0.1.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 +2 -2
- package/bin/yam.js +1 -1
- package/package.json +1 -1
- package/yam.manifest.json +1 -1
package/README.md
CHANGED
|
@@ -150,8 +150,8 @@ node ./bin/yam.js init-project /path/to/project
|
|
|
150
150
|
The package exposes the `yam` binary. It does not mutate your home directory during package installation.
|
|
151
151
|
|
|
152
152
|
```bash
|
|
153
|
-
npx yam-harness list
|
|
154
|
-
npx yam-harness install
|
|
153
|
+
npx -y --package yam-harness yam list
|
|
154
|
+
npx -y --package yam-harness yam install
|
|
155
155
|
npm install -g yam-harness
|
|
156
156
|
yam status
|
|
157
157
|
```
|
package/bin/yam.js
CHANGED
|
@@ -39,7 +39,7 @@ const RETIRED_SKILLS = [
|
|
|
39
39
|
|
|
40
40
|
const DEST = process.env.YAM_SKILLS_HOME || process.env.TIMETO_SKILLS_HOME || path.join(os.homedir(), '.agents', 'skills');
|
|
41
41
|
const CODEX_MIRROR = process.env.YAM_CODEX_MIRROR || process.env.TIMETO_CODEX_MIRROR || path.join(os.homedir(), '.codex', 'skills');
|
|
42
|
-
const VERSION = '0.1.
|
|
42
|
+
const VERSION = '0.1.1';
|
|
43
43
|
const PROJECT_PACK = 'yam.project.md';
|
|
44
44
|
const LEGACY_PROJECT_PACK = 'timeto.project.md';
|
|
45
45
|
const PACK_STALE_DAYS = 30;
|
package/package.json
CHANGED