@papi-ai/skills 0.1.0 → 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.
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "packageVersion": "0.1.0",
4
- "generatedAt": "2026-05-25T12:07:27.744Z",
3
+ "packageVersion": "0.1.1",
4
+ "generatedAt": "2026-07-13T08:27:41.473Z",
5
5
  "skills": [
6
6
  {
7
7
  "name": "check-mcp",
@@ -28,6 +28,11 @@
28
28
  "kind": "lazy",
29
29
  "checksum": "ae5da6393e14fcd5"
30
30
  },
31
+ {
32
+ "name": "papi-install",
33
+ "kind": "eager",
34
+ "checksum": "3ade812fcdfd7964"
35
+ },
31
36
  {
32
37
  "name": "papi-plan",
33
38
  "kind": "lazy",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@papi-ai/skills",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "PAPI's shareable Claude Code skill bundle — single source of truth, installed (not copied) into projects with pinned versioning",
5
5
  "license": "Elastic-2.0",
6
6
  "type": "module",
@@ -35,7 +35,7 @@
35
35
  ],
36
36
  "repository": {
37
37
  "type": "git",
38
- "url": "https://github.com/cathalos92/papi-ui.git",
38
+ "url": "https://github.com/getpapi/papi.git",
39
39
  "directory": "packages/skills"
40
40
  },
41
41
  "engines": {
@@ -0,0 +1,67 @@
1
+ ---
2
+ name: papi-install
3
+ description: Connect PAPI (Persistent Adaptive Planning Intelligence) to this project — one command, no config editing. Use when the user says "install papi", "set up papi", "connect papi", "add papi", or asks how to get structured plan/build/review cycles for their project. Also use when PAPI tools are expected but no papi MCP server is configured.
4
+ ---
5
+
6
+ # Install PAPI
7
+
8
+ PAPI gives your AI coding sessions structured plan → build → review cycles
9
+ with memory that compounds across sessions. Installing means connecting the
10
+ PAPI MCP server — one command, no JSON editing.
11
+
12
+ > Source of truth for the connection commands: `lib/install-snippets.ts` in
13
+ > the PAPI repo (remoteClaudeCodeOAuthCommand / setup CLI). This skill embeds
14
+ > those canonical commands verbatim — a CI test pins them; if they drift the
15
+ > test fails. Do not improvise different URLs or flags.
16
+
17
+ ## Step 1: Check for an existing connection
18
+
19
+ Look for a `papi` entry in `.mcp.json` (project root) or in the user's MCP
20
+ client config. If one exists, don't reinstall — run the `orient` tool and
21
+ report which cycle the project is on.
22
+
23
+ ## Step 2: Connect (pick ONE path)
24
+
25
+ ### Path A — remote connector (recommended, works from any directory)
26
+
27
+ Run:
28
+
29
+ ```bash
30
+ claude mcp add --transport http papi https://mcp.getpapi.ai/mcp
31
+ ```
32
+
33
+ Claude Code opens a browser tab so the user signs in (GitHub or email) and the
34
+ token is stored automatically. No keys to paste.
35
+
36
+ ### Path B — local server via device auth (when the user prefers stdio)
37
+
38
+ Run in the project folder:
39
+
40
+ ```bash
41
+ npx @papi-ai/server setup
42
+ ```
43
+
44
+ This is an RFC 8628 device-auth flow: it opens the browser for a one-click
45
+ approval, then mints the project and writes `.mcp.json` itself. Restart the
46
+ MCP client afterwards so it picks up the new server.
47
+
48
+ Never hand-edit tokens into files, never echo tokens into the chat, and never
49
+ configure a direct database connection for an external user — external users
50
+ go through the hosted proxy (Path A) or the device-auth flow (Path B) only.
51
+
52
+ ## Step 3: Verify
53
+
54
+ After connecting (restart the session if the tools don't appear):
55
+
56
+ 1. Call the `setup` tool if this project has never used PAPI — it scaffolds
57
+ the project brief and first backlog.
58
+ 2. Call `orient` — it should return the project's cycle state.
59
+
60
+ If `orient` answers, the install worked. Tell the user which cycle they're on
61
+ and that `plan` creates their first cycle.
62
+
63
+ ## Troubleshooting
64
+
65
+ - Tools missing after install → restart the MCP client (config is read at startup).
66
+ - `401`/auth errors → re-run the Step 2 command; the token may not have been stored.
67
+ - Anything else → run `npx @papi-ai/server doctor` for a read-only diagnostic.