Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
__pycache__/
*.py[cod]
*$py.class
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

This repo is the canonical spec. Vendor it into any project that wants the pattern.

## What's new in 1.5
## What's new in 1.12

More features, more reach, and a tighter runtime:

Expand All @@ -24,8 +24,8 @@ More features, more reach, and a tighter runtime:
snapshot.
- **Always-on invocation** — a `UserPromptSubmit` hook routes every message
through the runtime with no trigger keyword, now including a Gemini CLI target.
- **One-command test suite** — `npm test` runs both the Node CLI/hook tests and
the full Python kernel suite (44 tests) in a single pass.
- **One-command test suite** — `npm test` runs the Node CLI/hook/cache/target
tests plus the full Python kernel suite (100 tests) in a single pass.

## Scope — where simplicio-prompt actually wins

Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
"docs/",
"YOOL_TUPLE_HAMT.md",
"README.md",
"LICENSE"
"LICENSE",
"!**/__pycache__/**",
"!**/*.py[cod]",
"!**/*$py.class"
],
"scripts": {
"print": "node bin/simplicio-prompt.mjs",
Expand Down
Loading