nomnomtokens 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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +24 -0
  3. package/bin/cli.js +17 -0
  4. package/package.json +18 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 NikolaiKushner
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # nomnomtokens
2
+
3
+ > nom nom nom — your AI coding agent is eating tokens.
4
+
5
+ **Status: work in progress.** This is a placeholder release to reserve the name
6
+ while v0.1 is being built.
7
+
8
+ ## What it will be
9
+
10
+ A local-first web dashboard for AI coding agent usage analytics:
11
+
12
+ - run `npx nomnomtokens` → a dashboard opens in your browser
13
+ - spend, tokens, sessions, per-project breakdowns
14
+ - session & weekly limit tracking with exhaustion forecasts
15
+ - your data never leaves your machine
16
+ - Claude Code first; other agents next
17
+
18
+ ## Follow along
19
+
20
+ Star the repo: https://github.com/NikolaiKushner/nomnomtokens
21
+
22
+ ## License
23
+
24
+ MIT
package/bin/cli.js ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env node
2
+ // nomnomtokens v0.0.1 — placeholder while the real thing is being built.
3
+
4
+ const art = `
5
+ ┌─────────────────────────────────┐
6
+ │ ( ˘▽˘)っ nom nom nom │
7
+ │ │
8
+ │ your agent is eating tokens │
9
+ │ soon you'll see how many │
10
+ │ │
11
+ │ v0.0.1 · work in progress │
12
+ │ github.com/NikolaiKushner/nomnomtokens │
13
+ └─────────────────────────────────┘
14
+ `;
15
+ console.log(art);
16
+ console.log('Planned: local-first dashboard for AI coding agent usage —');
17
+ console.log('spend, tokens, limits, forecasts. Star the repo to follow along.\n');
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "nomnomtokens",
3
+ "version": "0.0.1",
4
+ "description": "nom nom nom — your AI coding agent is eating tokens. Soon: a local-first dashboard that shows exactly how many. WIP.",
5
+ "keywords": ["claude-code", "usage", "tokens", "dashboard", "local-first", "analytics", "cli"],
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "bin": {
9
+ "nomnomtokens": "bin/cli.js",
10
+ "nnt": "bin/cli.js"
11
+ },
12
+ "files": ["bin", "README.md", "LICENSE"],
13
+ "engines": { "node": ">=18" },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/NikolaiKushner/nomnomtokens.git"
17
+ }
18
+ }