@tekmidian/pai 0.2.0 → 0.2.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/FEATURE.md +5 -2
  2. package/package.json +1 -1
package/FEATURE.md CHANGED
@@ -19,7 +19,7 @@ different direction: persistent memory, session continuity, and deep Claude Code
19
19
  | **Language** | Python | TypeScript (Bun) |
20
20
  | **Primary interface** | CLI pipe (`echo "..." \| fabric -p pattern`) | MCP server + CLI (`pai`) |
21
21
  | **Prompt templates** | Yes — 200+ community "patterns" | No (out of scope) |
22
- | **YouTube transcript extraction** | Yes (built-in) | No |
22
+ | **YouTube transcript extraction** | Yes (built-in) | Yes — via [Scribe MCP](https://github.com/mnott/Scribe) |
23
23
  | **LLM pipe-through workflow** | Yes — core feature | No |
24
24
  | **Persistent session memory** | No | Yes — auto-indexed, 449K+ chunks |
25
25
  | **Session registry** | No | Yes — SQLite, tracks 77+ projects |
@@ -34,6 +34,7 @@ different direction: persistent memory, session continuity, and deep Claude Code
34
34
  | **Hook system** | No | Yes — pre-compact, session-stop, auto-cleanup |
35
35
  | **Backup / restore** | No | Yes — timestamped pg_dump + registry export |
36
36
  | **Multi-session concurrency** | n/a | Yes — daemon multiplexes Claude sessions |
37
+ | **Custom statusline** | No | Yes — model, MCPs, context meter, colors |
37
38
  | **Local / private** | Yes | Yes — no cloud, no external API for core |
38
39
  | **Docker required** | No | Only for full mode (PostgreSQL); SQLite mode needs none |
39
40
  | **macOS / Linux** | Yes | Yes |
@@ -95,7 +96,9 @@ To be clear about scope:
95
96
  - **Pipe-through LLM workflows** — Fabric's `echo "..." | fabric -p pattern` idiom is elegant
96
97
  for processing text at the command line. PAI doesn't replicate this.
97
98
  - **YouTube / web extraction** — Fabric can pull transcripts and content from URLs as input to
98
- patterns. PAI doesn't.
99
+ patterns. PAI covers YouTube transcription via the companion
100
+ [Scribe MCP](https://github.com/mnott/Scribe) server, but does not replicate Fabric's
101
+ web-scraping pipeline.
99
102
 
100
103
  If you want prompt patterns and CLI pipe-through workflows, use Fabric. If you want Claude
101
104
  Code to remember everything across sessions, use this.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekmidian/pai",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "PAI Knowledge OS — Personal AI Infrastructure with federated memory and project management",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",