mitsupi 1.0.5 → 1.1.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 ADDED
@@ -0,0 +1,12 @@
1
+ # Agent Notes
2
+
3
+ ## Releases
4
+
5
+ 1. Run `npm version <patch|minor|major>` and verify `package.json` updates.
6
+ 2. Update `CHANGELOG.md` for the release.
7
+ 3. Commit the release changes and tag with the same version.
8
+ 4. Push commits and tags, then publish with `npm publish` if needed.
9
+
10
+ ## Extensions
11
+
12
+ Pi extensions live in `./pi-extensions`. When working in this repo, add or update extensions there. You can consult the `pi-mono` for reference, but do not modify code in `pi-mono`.
package/CHANGELOG.md ADDED
@@ -0,0 +1,46 @@
1
+ # Changelog
2
+
3
+ All notable changes to agent-stuff are documented here.
4
+
5
+ ## 1.1.0
6
+
7
+ * Added project review guidelines and preserved review state across navigation.
8
+ * Added the `/diff` command to the unified file browser and merged diff/file workflows.
9
+ * Added new skills for commits, changelog updates, and frontend design.
10
+ * Expanded the whimsical "thinking" messages.
11
+ * Added prompts directory configuration support for Pi.
12
+ * Fixed reveal shortcut conflicts and improved the PR review editor flow.
13
+
14
+ ## 1.0.5
15
+
16
+ * Fixed the release CI pipeline for the published package.
17
+
18
+ ## 1.0.4
19
+
20
+ * Added the session control extension with socket rendering, output retrieval, and copy-todo text actions.
21
+ * Added support for session names and custom message types in session control.
22
+ * Improved control socket rendering and reconnection handling.
23
+ * Added control extension documentation.
24
+
25
+ ## 1.0.3
26
+
27
+ * Added todo assignments and validation for todo identifiers.
28
+ * Added copy-to-clipboard workflows for todos and improved update UX.
29
+ * Switched answer tooling to prefer Codex mini and refined prompt refinement.
30
+ * Documented todos and refreshed README guidance.
31
+
32
+ ## 1.0.2
33
+
34
+ * Introduced the todo manager extension (list/list-all, update, delete, and garbage collection).
35
+ * Added TODO-prefixed identifiers and refined the todo action menu behavior.
36
+ * Improved todo rendering and the refinement workflow ordering.
37
+ * Added support for append-only updates without requiring a body.
38
+ * Removed the unused codex-tuning extension.
39
+
40
+ ## 1.0.1
41
+
42
+ * Added core extensions: /answer (Q&A), /review, /files, /reveal, /loop, and cwd history.
43
+ * Added skills for Sentry, GitHub, web browsing, tmux, ghidra, pi-share, and Austrian transit APIs.
44
+ * Added Pi themes including Night Owl and additional styling.
45
+ * Added and refined the commit extension and review workflow.
46
+ * Improved packaging and initial repository setup.
package/README.md CHANGED
@@ -1,40 +1,15 @@
1
1
  # Agent Stuff
2
2
 
3
- This repository contains command files and skills that I use in some form with projects. Note that I usually fine-tune these for projects so they might not work without modification for you.
3
+ This repository contains skills and extensions that I use in some form with projects. Note that I usually fine-tune these for projects so they might not work without modification for you.
4
4
 
5
5
  It is released on npm as `mitsupi` for use with the [Pi](https://buildwithpi.ai/) package loader.
6
6
 
7
- ## Commands
8
-
9
- All command files are in the [`commands`](commands) folder:
10
-
11
- * [`/handoff`](commands/handoff.md) - Creates detailed handoff plan for session continuation
12
- * [`/pickup`](commands/pickup.md) - Resumes work from previous handoff session
13
- * [`/make-release`](commands/make-release.md) - Automates repository release with version management
14
- * [`/update-changelog`](commands/update-changelog.md) - Updates changelog with recent commits
15
-
16
- ### Handoff/Pickup Usage
17
-
18
- These are inspired by the idea of Ampcode to replace `/compact` with handoff. I generally do this already by hand with copy/paste but this is an attempt of automating this:
19
-
20
- ```
21
- /handoff "implement phase 1 of our plan"
22
- ```
23
-
24
- It will write a handoff plan into .claude/handoffs which you can then continue in a new session:
25
-
26
- ```
27
- /pickup name-of-handoff
28
- ```
29
-
30
- ### Release Management
31
-
32
- The release management commands do not work without tuning! But you can put claude to them and derive actually working ones. I for instance use them in [absurd](https://github.com/earendil-works/absurd) and you can look at the repo to see them in use.
33
-
34
7
  ## Skills
35
8
 
36
9
  All skill files are in the [`skills`](skills) folder:
37
10
 
11
+ * [`/commit`](skills/commit) - Claude Skill for creating git commits using concise Conventional Commits-style subjects
12
+ * [`/update-changelog`](skills/update-changelog) - Claude Skill for updating changelogs with notable user-facing changes
38
13
  * [`/ghidra`](skills/ghidra) - Claude Skill for reverse engineering binaries using Ghidra's headless analyzer
39
14
  * [`/github`](skills/github) - Claude Skill for interacting with GitHub via the `gh` CLI (issues, PRs, runs, and APIs)
40
15
  * [`/openscad`](skills/openscad) - Claude Skill for creating and rendering OpenSCAD 3D models and exporting STL files
@@ -45,42 +20,7 @@ All skill files are in the [`skills`](skills) folder:
45
20
  * [`/pi-share`](skills/pi-share) - Claude Skill for loading and parsing session transcripts from shittycodingagent.ai
46
21
  * [`/anachb`](skills/anachb) - Claude Skill for querying Austrian public transport (VOR AnachB) for departures, routes, and disruptions
47
22
  * [`/oebb-scotty`](skills/oebb-scotty) - Claude Skill for Austrian rail travel planning via ÖBB Scotty API
48
-
49
- ### Browser
50
-
51
- In the [`skills/web-browser`](skills/web-browser) folder is a Claude Skill that helps it to use puppeteer in a node environment to browse the web. This significantly improves on using a browser MCP. You will need to go into the scripts folder once to run `npm i`. This was stolen from [Mario Zechner](https://mariozechner.at/posts/2025-11-02-what-if-you-dont-need-mcp/).
52
-
53
- ### tmux
54
-
55
- In the [`skills/tmux`](skills/tmux) folder is a Claude Skill that lets it drive tmux directly for interactive CLI workflows (python, gdb, etc.) by sending keystrokes and scraping pane output. It uses stock tmux on macOS/Linux and includes helper scripts in `scripts` to find sessions and wait for prompts.
56
-
57
- ### sentry
58
-
59
- In the [`skills/sentry`](skills/sentry) folder there is an alternative way to access Sentry as a Claude Skill. I found the other methods to talk to Sentry token inefficient and just not great. Right now it can only read issues though and might not be ideal yet.
60
-
61
- ### improve-skill
62
-
63
- In the [`skills/improve-skill`](skills/improve-skill) folder is a skill that helps analyze coding agent sessions to improve or create new skills. It works with Claude Code, Pi, and Codex session files. Ask the agent to "improve the sentry skill based on this session" or "create a new skill from this session" to use it.
64
-
65
- ### ghidra
66
-
67
- In the [`skills/ghidra`](skills/ghidra) folder is a skill for automated reverse engineering using Ghidra's headless analyzer. It can decompile binaries to C code, extract functions, strings, symbols, and analyze call graphs without needing the GUI. Requires Ghidra installed (on macOS: `brew install --cask ghidra`).
68
-
69
- ### pi-share
70
-
71
- In the [`skills/pi-share`](skills/pi-share) folder is a skill for loading and parsing session transcripts from shittycodingagent.ai (pi-share) URLs. It fetches gists, decodes embedded session data, and extracts conversation history including messages, tool calls, and system prompts.
72
-
73
- ### google-meet
74
-
75
- In the [`skills/google-meet`](skills/google-meet) folder is a skill for creating Google Meet spaces with auto recording/transcription enabled. It is currently hardcoded for earendil.com accounts only.
76
-
77
- ### anachb
78
-
79
- In the [`skills/anachb`](skills/anachb) folder is a skill for querying Austrian public transport via the VOR AnachB API. It includes shell scripts for searching stations, getting real-time departures, planning routes between locations, and checking service disruptions. Covers all Austrian public transport including trains, U-Bahn, trams, and buses.
80
-
81
- ### oebb-scotty
82
-
83
- In the [`skills/oebb-scotty`](skills/oebb-scotty) folder is a skill for Austrian rail travel planning via the ÖBB Scotty HAFAS API. It documents how to search locations, plan trips between stations, get departure/arrival boards, and fetch service alerts. Includes jq filters for extracting concise trip summaries from verbose API responses.
23
+ * [`/frontend-design`](skills/frontend-design) - Claude Skill for designing and implementing distinctive frontend interfaces
84
24
 
85
25
  ## PI Coding Agent Extensions
86
26
 
@@ -90,11 +30,22 @@ Custom extensions for the PI Coding Agent can be found in the [`pi-extensions`](
90
30
  * [`answer.ts`](pi-extensions/answer.ts) - Alternative to `qna.ts` with a custom interactive TUI for answering questions one by one.
91
31
  * [`review.ts`](pi-extensions/review.ts) - Code review command inspired by Codex. Supports reviewing uncommitted changes, against a base branch (PR style), specific commits, or with custom instructions. Includes Ctrl+R shortcut.
92
32
  * [`loop.ts`](pi-extensions/loop.ts) - Runs a prompt loop for rapid iterative coding with optional auto-continue control.
93
- * [`reveal.ts`](pi-extensions/reveal.ts) - Finder/Quick Look helper that browses session file references via Ctrl+F or `/files`, with Ctrl+R revealing the latest file and Ctrl+Shift+R opening Quick Look on macOS.
33
+ * [`files.ts`](pi-extensions/files.ts) - Unified file browser that merges git status (dirty first) with session references, plus reveal/open/edit and diff actions.
94
34
  * [`cwd-history.ts`](pi-extensions/cwd-history.ts) - Displays and manages recent working directory history inside the PI Coding Agent.
95
35
  * [`codex-tuning.ts`](pi-extensions/codex-tuning.ts) - Codex tuning helper for collecting samples and tagging outcomes during agent sessions.
96
36
  * [`todos.ts`](pi-extensions/todos.ts) - Todo manager extension with file-backed storage and a TUI for listing and editing todos.
37
+ * [`whimsical.ts`](pi-extensions/whimsical.ts) - Replaces the default "Thinking..." message with random whimsical phrases like "Reticulating splines...", "Consulting the void...", or "Bribing the compiler...".
97
38
 
98
39
  ## PI Coding Agent Themes
99
40
 
100
41
  This repository includes custom themes for the PI Coding Agent. The themes can be found in the [`pi-themes`](pi-themes) folder and customize the appearance and behavior of the agent interface.
42
+
43
+ ## Plumbing Commands
44
+
45
+ These command files need customization before use. They live in [`plumbing-commands`](plumbing-commands):
46
+
47
+ * [`/make-release`](plumbing-commands/make-release.md) - Automates repository release with version management
48
+
49
+ ### Release Management
50
+
51
+ The plumbing release commands do not work without tuning! But you can put claude to them and derive actually working ones. I for instance use them in [absurd](h>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mitsupi",
3
- "version": "1.0.5",
3
+ "version": "1.1.0",
4
4
  "description": "Armin's pi coding agent commands, skills, extensions, and themes",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,9 +15,18 @@
15
15
  "pi-theme"
16
16
  ],
17
17
  "pi": {
18
- "extensions": ["./pi-extensions"],
19
- "skills": ["./skills"],
20
- "themes": ["./pi-themes"]
18
+ "extensions": [
19
+ "./pi-extensions"
20
+ ],
21
+ "skills": [
22
+ "./skills"
23
+ ],
24
+ "themes": [
25
+ "./pi-themes"
26
+ ],
27
+ "prompts": [
28
+ "./commands"
29
+ ]
21
30
  },
22
31
  "peerDependencies": {
23
32
  "@mariozechner/pi-coding-agent": "*",