@neolio42/pixel-office 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 -11
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ A real-time pixel art visualization of your [Claude Code](https://docs.anthropic
|
|
|
7
7
|
## Quick start
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npx pixel-office
|
|
10
|
+
npx @neolio42/pixel-office
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
That's it. First run automatically registers Claude Code hooks, starts the server, and opens your browser. Start a Claude Code session in any terminal — a worker appears at a desk.
|
|
@@ -46,7 +46,7 @@ Each Claude Code session registers as a pixel art worker via [Claude Code hooks]
|
|
|
46
46
|
If you want to develop or customize Pixel Office:
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
|
-
git clone https://github.com/
|
|
49
|
+
git clone https://github.com/Neolio42/pixel-office.git
|
|
50
50
|
cd pixel-office
|
|
51
51
|
npm install
|
|
52
52
|
npm run dev
|
|
@@ -122,15 +122,6 @@ Pixel Office uses 7 Claude Code hooks. All are fire-and-forget except `PreToolUs
|
|
|
122
122
|
|
|
123
123
|
Set `PIXEL_OFFICE_HAIKU=1` in any Claude Code session to skip Pixel Office hooks for that session (useful for lightweight/scripted runs).
|
|
124
124
|
|
|
125
|
-
## Publishing
|
|
126
|
-
|
|
127
|
-
```bash
|
|
128
|
-
npm login
|
|
129
|
-
npm publish
|
|
130
|
-
```
|
|
131
|
-
|
|
132
|
-
After publishing, anyone can run `npx pixel-office` to start.
|
|
133
|
-
|
|
134
125
|
## License
|
|
135
126
|
|
|
136
127
|
[MIT](LICENSE)
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neolio42/pixel-office",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Visualize your Claude Code sessions as pixel art workers in a tiny office",
|
|
5
5
|
"author": "Nedas Mackevičius",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/
|
|
9
|
+
"url": "git+https://github.com/Neolio42/pixel-office.git"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"claude",
|