saterminal 0.1.0 → 0.3.0

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/AGENTS.md CHANGED
@@ -1,23 +1,37 @@
1
+ # Environment
2
+
3
+ I use Nix & `direnv`. Glance `flake.nix` initially at once.
4
+
1
5
  # Git
2
6
 
3
7
  - Commit regularly.
4
- - Commit messages should split "what" from "why/how":
5
- - First line: conventional commit summary.
6
- - Following lines: concise reasons and implementation notes.
7
- - Prefer backticks for paths, commands, package names, settings, and other literal identifiers that are easier to recognize that way.
8
+ - Prefer subsystem-first commit subjects over Conventional Commits.
9
+ - Use `subsystem: concise change`.
10
+ - Do not default to `feat(...)`, `fix(...)`, `chore(...)`, etc.
11
+ - Pick the subsystem people would search for later: `cli`, `state`, `tui`, `api`, `docs`, `nix`, `test`, or a narrower module when useful.
12
+ - Keep messages compact.
13
+ - A good small commit can be only a subject line.
14
+ - Add a body when the reason, tradeoff, or implementation detail matters.
15
+ - Body bullets should explain why/how, not repeat the subject.
16
+ - Prefer backticks for paths, commands, package names, settings, and other literal identifiers when they improve scanability.
8
17
 
9
18
  ```text
10
- feat(darwin/packages): add `btop` and `macmon`
19
+ cli: render activity as square heatmap
11
20
 
12
- - `btop` and `macmon` provide terminal-based system monitoring
13
- - install them through `environment.systemPackages` so they are available system-wide
14
- - both packages resolve from the pinned nixpkgs set, so no unstable package source is needed
21
+ - use one colored square per day instead of intensity glyphs
22
+ - keep empty days visible as gray cells
23
+ - orient the grid by week columns and weekday rows
15
24
  ```
16
25
 
17
26
  ```text
18
- chore(repo): remove unused `documents/` directory
27
+ state: record attempt events
28
+
29
+ - keep `attempts.csv` as the latest per-question snapshot
30
+ - append every answer to `events.csv` for streaks and activity
31
+ ```
19
32
 
20
- - no Nix modules, package config, or templates reference `documents/`
21
- - the directory only contained standalone agent/document notes
22
- - removing it keeps the repo focused on active configuration
33
+ ```text
34
+ docs: tighten commit guidance
23
35
  ```
36
+
37
+ - Do not force a three-bullet format. Use fewer bullets, more bullets, or none based on the commit.
package/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  why?
2
2
 
3
3
  - i don't like how the official SAT question bank forces u to download PDFs
4
- - official SAT question bank + other third party question readers display the question difficulty and other metadata
4
+ - official SAT question bank + other third party question readers display the question difficulty and other metadata (their UIs are also quite chopped)
5
+ - used to use oneprep until i heard they started AI-generating questions, sooo...
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saterminal",
3
- "version": "0.1.0",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "sat": "./src/main.ts"