@nteract/pi 0.0.1 → 0.1.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 (2) hide show
  1. package/README.md +11 -7
  2. package/package.json +11 -4
package/README.md CHANGED
@@ -1,22 +1,26 @@
1
1
  # @nteract/pi
2
2
 
3
- Pi extensions for nteract.
3
+ Pi extensions for running Python through the local nteract `runtimed` daemon.
4
+ The package provides a persistent notebook-backed REPL for coding agents and
5
+ terminal workflows that need stateful Python execution.
4
6
 
5
7
  ## Extensions
6
8
 
7
- - `extensions/repl.ts` registers a persistent `python` tool backed by the local
8
- nteract `runtimed` daemon through `@runtimed/node`.
9
- - It also registers `python_add_dependencies`, `python_save_notebook`, and
10
- `/python-reset`.
9
+ - `extensions/repl.ts` registers a persistent `python` tool backed by
10
+ `@runtimed/node`.
11
+ - `python_add_dependencies` records notebook UV dependencies.
12
+ - `python_save_notebook` saves the backing notebook.
13
+ - `/python-reset` starts a fresh notebook session.
11
14
 
12
15
  ## Install
13
16
 
14
- Once published:
15
-
16
17
  ```bash
17
18
  pi install npm:@nteract/pi@next
18
19
  ```
19
20
 
21
+ Use the `next` tag for prerelease builds until the package is promoted to the
22
+ default npm tag.
23
+
20
24
  ## Local Use
21
25
 
22
26
  From this checkout:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nteract/pi",
3
- "version": "0.0.1",
4
- "description": "nteract extensions for Pi",
3
+ "version": "0.1.1",
4
+ "description": "Pi extensions that run Python through the local nteract runtimed daemon.",
5
5
  "type": "module",
6
6
  "license": "BSD-3-Clause",
7
7
  "repository": {
@@ -9,12 +9,19 @@
9
9
  "url": "git+https://github.com/nteract/desktop.git",
10
10
  "directory": "plugins/nteract/pi"
11
11
  },
12
+ "homepage": "https://github.com/nteract/desktop/tree/main/plugins/nteract/pi#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/nteract/desktop/issues"
15
+ },
12
16
  "keywords": [
13
17
  "pi-package",
14
18
  "nteract",
19
+ "runtimed",
15
20
  "notebook",
16
21
  "python",
17
- "repl"
22
+ "repl",
23
+ "jupyter",
24
+ "agent"
18
25
  ],
19
26
  "pi": {
20
27
  "extensions": [
@@ -26,7 +33,7 @@
26
33
  "extensions"
27
34
  ],
28
35
  "dependencies": {
29
- "@runtimed/node": "0.0.1"
36
+ "@runtimed/node": "0.1.1"
30
37
  },
31
38
  "peerDependencies": {
32
39
  "@mariozechner/pi-coding-agent": "*",