pi-feats 0.1.1 → 0.1.3
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/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
`pi-feats` turns the lightweight, extensible Pi Coding Agent into an operational workspace without replacing Pi's native configuration model. It adds persistent profiles, a policy-controlled sandbox, HTTP and browser interfaces, application runtimes, scheduled work, Git-backed Skill discovery, and command-line administration.
|
|
6
6
|
|
|
7
|
+

|
|
8
|
+
|
|
7
9
|
## Contents
|
|
8
10
|
|
|
9
11
|
- [Glossary](#glossary)
|
|
Binary file
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
const { join } = require("node:path");
|
|
2
|
+
const appRoot = __dirname;
|
|
2
3
|
|
|
3
4
|
module.exports = {
|
|
4
5
|
outputFileTracingRoot: join(__dirname, "../.."),
|
|
6
|
+
// npm installs Pi Feats below node_modules. Ask Next to transpile the
|
|
7
|
+
// package itself when the Console app is built from that location.
|
|
8
|
+
transpilePackages: ["pi-feats"],
|
|
9
|
+
webpack(config) {
|
|
10
|
+
config.resolve.alias["@"] = appRoot;
|
|
11
|
+
return config;
|
|
12
|
+
},
|
|
5
13
|
};
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-feats",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "A modular Pi package for profiles, sandboxing, remote access, applications, guardrails, skills, session management, observability, and web-based operations.",
|
|
5
5
|
"keywords": [
|
|
6
|
+
"pi-package",
|
|
6
7
|
"pi-coding-agent",
|
|
7
8
|
"pi-agent",
|
|
8
9
|
"pi-extension",
|
|
@@ -27,14 +28,15 @@
|
|
|
27
28
|
"extensions",
|
|
28
29
|
"scripts",
|
|
29
30
|
"README.md",
|
|
30
|
-
"LICENSE"
|
|
31
|
+
"LICENSE",
|
|
32
|
+
"assets"
|
|
31
33
|
],
|
|
32
34
|
"license": "MIT",
|
|
33
35
|
"engines": {
|
|
34
36
|
"node": ">=22"
|
|
35
37
|
},
|
|
36
38
|
"scripts": {
|
|
37
|
-
"build:web": "cd extensions/pi-console-webui &&
|
|
39
|
+
"build:web": "cd extensions/pi-console-webui && npx --no-install next build",
|
|
38
40
|
"ensure:nono": "sh scripts/install-nono.sh",
|
|
39
41
|
"postinstall": "npm run ensure:nono && npm run build:web",
|
|
40
42
|
"test": "npm run build:web"
|
|
@@ -84,6 +86,7 @@
|
|
|
84
86
|
"./extensions/pulse",
|
|
85
87
|
"./extensions/sequential-workflow.ts",
|
|
86
88
|
"./extensions/skill-sources"
|
|
87
|
-
]
|
|
89
|
+
],
|
|
90
|
+
"image": "https://raw.githubusercontent.com/rjaskonis/pi-feats/v0.1.3/assets/pi-feats-preview.png"
|
|
88
91
|
}
|
|
89
92
|
}
|