nightytidy 0.2.0 → 0.2.2

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 +39 -16
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,29 +14,56 @@ 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
+ npx nightytidy
20
18
  ```
21
19
 
22
- No build stepplain JavaScript ESM, runs directly.
20
+ No install needed`npx` downloads and runs it directly.
23
21
 
24
22
  ## Quick Start
25
23
 
26
- Launch the desktop GUI:
24
+ NightyTidy has three ways to run: the **web app**, the **desktop GUI**, and the **CLI**.
25
+
26
+ ### Web App (remote monitoring)
27
+
28
+ The easiest way to get started. Connect to [nightytidy.com](https://nightytidy.com) for remote monitoring, scheduling, and analytics — from any browser, any device.
29
+
30
+ 1. Start the local agent on your machine:
31
+ ```bash
32
+ npx nightytidy agent
33
+ ```
34
+ 2. Open [nightytidy.com](https://nightytidy.com) and sign in with GitHub
35
+ 3. Add your project, pick steps, and start a run
36
+
37
+ 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.
38
+
39
+ ### Desktop GUI (local)
40
+
41
+ A Chrome app-mode window for fully local use — no account needed:
27
42
 
28
43
  ```bash
29
- npm run gui
44
+ npx nightytidy gui
30
45
  ```
31
46
 
32
- This opens a Chrome app-mode window. From there:
47
+ From there:
33
48
 
34
49
  1. **Select your project folder** using the native folder picker
35
50
  2. **Pick which steps to run** — or Select All for all 33
36
51
  3. **Set the timeout** per step (default: 45 minutes)
37
52
  4. **Click Start Run** and walk away
38
53
 
39
- NightyTidy handles everything from there: progress tracking, live Claude output, rate-limit pausing, report generation, and merging changes back to your branch.
54
+ ### CLI (terminal)
55
+
56
+ For terminal users, scripting, or CI:
57
+
58
+ ```bash
59
+ npx nightytidy --all
60
+ ```
61
+
62
+ See [CLI Usage](#cli-usage) below for all options.
63
+
64
+ ---
65
+
66
+ All three modes handle progress tracking, live Claude output, rate-limit pausing, report generation, and merging changes back to your branch.
40
67
 
41
68
  ## Run Duration and Token Usage
42
69
 
@@ -52,7 +79,7 @@ Running fewer steps per session is a perfectly valid workflow — you'll get the
52
79
 
53
80
  ## Desktop GUI
54
81
 
55
- The GUI is the primary way to use NightyTidy. It wraps the CLI orchestrator in a five-screen visual workflow.
82
+ The desktop GUI wraps the CLI orchestrator in a five-screen visual workflow. No account needed — everything runs locally.
56
83
 
57
84
  ### Screens
58
85
 
@@ -311,15 +338,11 @@ GitHub Actions on every push/PR to master:
311
338
 
312
339
  ## Web App (nightytidy.com)
313
340
 
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
- ```
341
+ 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
342
 
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.
343
+ **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
344
 
322
- **Source**: [nightytidy-web](https://github.com/dorianspitz23/nightytidy-web)
345
+ **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
346
 
324
347
  ## License
325
348
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nightytidy",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Automated overnight codebase improvement through Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Dorian Spitz",