Skip to content

Commit 6c67840

Browse files
committed
fix(pack): ship dist-only package
1 parent ad7e471 commit 6c67840

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

packages/app/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# @prover-coder-ai/context-doc
2+
3+
Syncs AI assistant conversation history (Claude, Codex, Qwen) to your project's `.knowledge` folder.
4+
5+
## Usage
6+
7+
```bash
8+
npx @prover-coder-ai/context-doc
9+
```
10+
11+
Example:
12+
13+
```
14+
user@arch ~/effect-template (main)> npx @prover-coder-ai/context-doc
15+
Claude: source not found; skipped syncing (Claude project directory is missing)
16+
Codex: copied 9 files from /home/user/.codex to /home/user/effect-template/.knowledge/.codex
17+
Qwen: copied 1 files from /home/user/.qwen/tmp/040644799b0a7c05ac8df9cf26da0eab978287161b20ee2addc8105393cf98dd to /home/user/effect-template/.knowledge/.qwen
18+
```

packages/app/package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
"bin": {
77
"context-doc": "bin/context-doc.js"
88
},
9+
"files": [
10+
"dist",
11+
"bin",
12+
"README.md"
13+
],
914
"directories": {
1015
"doc": "doc"
1116
},
@@ -16,6 +21,7 @@
1621
"lint:tests": "npx @ton-ai-core/vibecode-linter tests/",
1722
"lint:effect": "npx eslint --config eslint.effect-ts-check.config.mjs .",
1823
"check": "pnpm run typecheck",
24+
"prepack": "pnpm run build",
1925
"prestart": "pnpm run build",
2026
"start": "node dist/main.js -- --project-root ../..",
2127
"test": "pnpm run lint:tests && vitest run",

0 commit comments

Comments
 (0)