nightytidy 0.2.0 → 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 (2) hide show
  1. package/README.md +44 -15
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,29 +14,62 @@ Built for vibe coders and small teams who want production-grade code quality wit
14
14
  ## Installation
15
15
 
16
16
  ```bash
17
- git clone https://github.com/dorianspitz23/NightyTidy.git
18
- cd NightyTidy
19
- npm install
17
+ npm install -g nightytidy
18
+ ```
19
+
20
+ Or run directly without installing:
21
+
22
+ ```bash
23
+ npx nightytidy
20
24
  ```
21
25
 
22
26
  No build step — plain JavaScript ESM, runs directly.
23
27
 
24
28
  ## Quick Start
25
29
 
26
- Launch the desktop GUI:
30
+ NightyTidy has three ways to run: the **web app**, the **desktop GUI**, and the **CLI**.
31
+
32
+ ### Web App (remote monitoring)
33
+
34
+ The easiest way to get started. Connect to [nightytidy.com](https://nightytidy.com) for remote monitoring, scheduling, and analytics — from any browser, any device.
35
+
36
+ 1. Start the local agent on your machine:
37
+ ```bash
38
+ npx nightytidy agent
39
+ ```
40
+ 2. Open [nightytidy.com](https://nightytidy.com) and sign in with GitHub
41
+ 3. Add your project, pick steps, and start a run
42
+
43
+ The agent runs locally at `127.0.0.1:48372`. The web app connects to it via WebSocket — **your code never leaves your machine**. You can monitor progress, view diffs, and manage runs from anywhere.
44
+
45
+ ### Desktop GUI (local)
46
+
47
+ A Chrome app-mode window for fully local use — no account needed:
27
48
 
28
49
  ```bash
29
- npm run gui
50
+ npx nightytidy gui
30
51
  ```
31
52
 
32
- This opens a Chrome app-mode window. From there:
53
+ From there:
33
54
 
34
55
  1. **Select your project folder** using the native folder picker
35
56
  2. **Pick which steps to run** — or Select All for all 33
36
57
  3. **Set the timeout** per step (default: 45 minutes)
37
58
  4. **Click Start Run** and walk away
38
59
 
39
- NightyTidy handles everything from there: progress tracking, live Claude output, rate-limit pausing, report generation, and merging changes back to your branch.
60
+ ### CLI (terminal)
61
+
62
+ For terminal users, scripting, or CI:
63
+
64
+ ```bash
65
+ npx nightytidy --all
66
+ ```
67
+
68
+ See [CLI Usage](#cli-usage) below for all options.
69
+
70
+ ---
71
+
72
+ All three modes handle progress tracking, live Claude output, rate-limit pausing, report generation, and merging changes back to your branch.
40
73
 
41
74
  ## Run Duration and Token Usage
42
75
 
@@ -52,7 +85,7 @@ Running fewer steps per session is a perfectly valid workflow — you'll get the
52
85
 
53
86
  ## Desktop GUI
54
87
 
55
- The GUI is the primary way to use NightyTidy. It wraps the CLI orchestrator in a five-screen visual workflow.
88
+ The desktop GUI wraps the CLI orchestrator in a five-screen visual workflow. No account needed — everything runs locally.
56
89
 
57
90
  ### Screens
58
91
 
@@ -311,15 +344,11 @@ GitHub Actions on every push/PR to master:
311
344
 
312
345
  ## Web App (nightytidy.com)
313
346
 
314
- NightyTidy has a web dashboard at [nightytidy.com](https://nightytidy.com) for remote monitoring, scheduling, and analytics. Start the local agent to connect:
315
-
316
- ```bash
317
- npx nightytidy agent
318
- ```
347
+ The web dashboard at [nightytidy.com](https://nightytidy.com) provides remote monitoring, scheduling, and analytics. See [Quick Start](#web-app-remote-monitoring) for setup.
319
348
 
320
- The agent runs on your machine at `127.0.0.1:48372`. The web app connects to it via WebSocket your code never leaves your machine. Firebase handles authentication and stores run history so you can check status from any browser.
349
+ **Features**: Real-time run monitoring, project management, run history, step analytics, cron scheduling, diff viewer, report viewer, merge/rollback controls, and GitHub PR creation all from your browser.
321
350
 
322
- **Source**: [nightytidy-web](https://github.com/dorianspitz23/nightytidy-web)
351
+ **Architecture**: Your code never leaves your machine. The local agent (`npx nightytidy agent`) runs a WebSocket server at `127.0.0.1:48372`. The web app connects to it via WebSocket. Firebase handles authentication and stores run metadata so you can check status from any device.
323
352
 
324
353
  ## License
325
354
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nightytidy",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Automated overnight codebase improvement through Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Dorian Spitz",