@mohndoe/pi-atlas 0.1.3 → 0.1.4

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.
@@ -0,0 +1,25 @@
1
+ on:
2
+ push:
3
+ branches:
4
+ - main
5
+
6
+ permissions:
7
+ contents: write
8
+ issues: write
9
+ pull-requests: write
10
+
11
+ name: release-please
12
+
13
+ jobs:
14
+ release-please:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: googleapis/release-please-action@v4
18
+ with:
19
+ # this assumes that you have created a personal access token
20
+ # (PAT) and configured it as a GitHub action secret named
21
+ # `MY_RELEASE_PLEASE_TOKEN` (this secret name is not important).
22
+ token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
23
+ # this is a built-in strategy in release-please, see "Action Inputs"
24
+ # for more options
25
+ release-type: node
package/CHANGELOG.md ADDED
@@ -0,0 +1,23 @@
1
+ # Changelog
2
+
3
+ ## [0.1.4](https://github.com/MohnDoe/pi-atlas/compare/v0.1.3...v0.1.4) (2026-06-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * add Release Please GH Action ([5629007](https://github.com/MohnDoe/pi-atlas/commit/5629007ecacbeb013277bbccd4171b50ff3d3c36))
9
+ * add screenshot for pi.dev packages directory ([413890d](https://github.com/MohnDoe/pi-atlas/commit/413890d1c694b2c81b4dfcb7bb4219a36ad43937))
10
+ * add screenshot to README ([5e0895d](https://github.com/MohnDoe/pi-atlas/commit/5e0895d4620ac3220ddc0c93a0edcb5e659ee4c5))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **compute:** consolidate fragile double-sort into single sort ([781c5e4](https://github.com/MohnDoe/pi-atlas/commit/781c5e4950473b0c9d10371400147c24334f851b))
16
+ * Release Please workflow ([81b47ff](https://github.com/MohnDoe/pi-atlas/commit/81b47ff1797984d1bfc0e1b70f53e33bc17de615))
17
+ * replace invalid locale "en-EN" with "en-US" ([8e7f360](https://github.com/MohnDoe/pi-atlas/commit/8e7f3609761e8ce113e4d0601429521515f905e1))
18
+ * tables for languages, models, projects and usage have better proportions ([9866ef1](https://github.com/MohnDoe/pi-atlas/commit/9866ef173459be29158d3ef6d55676b93d48e9a9))
19
+
20
+
21
+ ### Miscellaneous Chores
22
+
23
+ * force version ([899f17d](https://github.com/MohnDoe/pi-atlas/commit/899f17d508689dd18c2d8adc5b247e51b412ef87))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mohndoe/pi-atlas",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "See your agent usage and cost directly in Pi — costs, languages, models, projects, and tools from session logs.",
5
5
  "keywords": [
6
6
  "pi",
@@ -69,10 +69,10 @@ export class Languages extends Container {
69
69
  this.table = new SortedTable(
70
70
  {
71
71
  columns: [
72
- { header: cell.header("Name"), width: 12 },
73
- { header: cell.header("Share %"), width: "fill" },
74
- { header: cell.header("Edits"), width: 8 },
75
- { header: cell.header("Lines"), width: 14 },
72
+ { header: cell.header("Name"), width: "fill" },
73
+ { header: cell.header("Share %"), width: 20 },
74
+ { header: cell.header("Edits"), width: 10 },
75
+ { header: cell.header("Lines"), width: 12 },
76
76
  ],
77
77
  rows: this.rows,
78
78
  maxHeight: this.maxHeight,
@@ -68,11 +68,11 @@ export class Models extends Container {
68
68
  this.table = new SortedTable(
69
69
  {
70
70
  columns: [
71
- { header: cell.header("Name"), width: 32 },
72
- { header: cell.header("Provider"), width: 16 },
73
- { header: cell.header("Cost %"), width: "fill" },
71
+ { header: cell.header("Name"), width: "fill" },
72
+ { header: cell.header("Provider"), width: 20 },
73
+ { header: cell.header("Cost %"), width: 14 },
74
74
  { header: cell.header("Calls"), width: 10 },
75
- { header: cell.header("Cost"), width: 12 },
75
+ { header: cell.header("Cost"), width: 10 },
76
76
  ],
77
77
  rows: this.rows,
78
78
  maxHeight: this.maxHeight,
@@ -64,9 +64,9 @@ export class Projects extends Container {
64
64
  this.table = new SortedTable(
65
65
  {
66
66
  columns: [
67
- { header: cell.header("Name"), width: 20 },
68
- { header: cell.header("Share %"), width: "fill" },
69
- { header: cell.header("Sessions"), width: 14 },
67
+ { header: cell.header("Name"), width: "fill" },
68
+ { header: cell.header("Share %"), width: 14 },
69
+ { header: cell.header("Sessions"), width: 10 },
70
70
  { header: cell.header("Cost"), width: 10 },
71
71
  ],
72
72
  rows: this.rows,
package/src/tabs/Usage.ts CHANGED
@@ -152,8 +152,8 @@ export class Usage extends Container {
152
152
  this.table = new SortedTable(
153
153
  {
154
154
  columns: [
155
- { header: cell.header("Command"), width: 20 },
156
- { header: cell.header("Share %"), width: "fill" },
155
+ { header: cell.header("Command"), width: "fill" },
156
+ { header: cell.header("Share %"), width: 20 },
157
157
  { header: cell.header("Calls"), width: 12 },
158
158
  ],
159
159
  rows: this.rows,