harness-anywhere 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.
- package/README.md +22 -0
- package/bin/cli.js +11 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# 🐴 harness-anywhere
|
|
2
|
+
|
|
3
|
+
**My AI harness, anywhere.**
|
|
4
|
+
|
|
5
|
+
Back up your Claude Code setup — `CLAUDE.md`, skills, hooks, settings — to your **own private GitHub repo**, and restore it on any machine in minutes. No third-party server: your GitHub is the vault (fastlane-match style).
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx harness-anywhere
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Status
|
|
12
|
+
|
|
13
|
+
🚧 **In development.** This release is a placeholder while the first version (local web dashboard: one-line setup → browser opens → connect GitHub → back up / restore / merge) is being built.
|
|
14
|
+
|
|
15
|
+
## Planned
|
|
16
|
+
|
|
17
|
+
- One-line bootstrap on a new machine — your whole Claude Code environment in ~5 minutes
|
|
18
|
+
- Structure-aware sync: `settings.json` key merge, skills/hooks/agents understood, not blindly copied
|
|
19
|
+
- Both-sides-exist? A merge workbench — nothing gets silently overwritten
|
|
20
|
+
- Per-project harness inventory, memory browser, machine overrides (later)
|
|
21
|
+
|
|
22
|
+
MIT © brody424
|
package/bin/cli.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
console.log(`
|
|
3
|
+
🐴 harness-anywhere
|
|
4
|
+
|
|
5
|
+
My AI harness, anywhere.
|
|
6
|
+
Back up your Claude Code setup (CLAUDE.md, skills, hooks, settings)
|
|
7
|
+
to your own private GitHub repo — restore it on any machine in minutes.
|
|
8
|
+
|
|
9
|
+
Status: in development — this is a placeholder release.
|
|
10
|
+
Watch: https://github.com/brody424
|
|
11
|
+
`);
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "harness-anywhere",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "My AI harness, anywhere — back up your Claude Code setup (CLAUDE.md, skills, hooks) to your own private GitHub repo and restore it on any machine. Coming soon.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"harness-anywhere": "bin/cli.js"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"bin"
|
|
10
|
+
],
|
|
11
|
+
"keywords": [
|
|
12
|
+
"claude",
|
|
13
|
+
"claude-code",
|
|
14
|
+
"dotfiles",
|
|
15
|
+
"sync",
|
|
16
|
+
"harness",
|
|
17
|
+
"ai"
|
|
18
|
+
],
|
|
19
|
+
"author": "brody424",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=18"
|
|
23
|
+
}
|
|
24
|
+
}
|