mirror of
https://github.com/lllin000/PaperForge.git
synced 2026-07-22 17:00:23 +00:00
- command/lp-*.md: replace python <system_dir>/... with paperforge status|selection-sync|index-refresh|ocr run; add fallback legacy command section - command/ld-deep.md: update queue preflight to 'paperforge deep-reading'; add paperforge paths --json for variable resolution - README.md: update core commands section to show paperforge first, legacy as fallback - docs/INSTALLATION.md: add paperforge paths/status as primary verification - docs/setup-guide.md: replace python pipeline/worker/... with paperforge selection-sync/index-refresh - setup_wizard.py DoneStep: add pip install -e . and paperforge commands as primary next steps All 15 tests in tests/test_command_docs.py pass.
20 lines
494 B
Markdown
20 lines
494 B
Markdown
# /lp-status
|
|
|
|
查看 PaperForge Lite 当前安装与运行状态。
|
|
|
|
## Command
|
|
|
|
```bash
|
|
paperforge status
|
|
```
|
|
|
|
## 说明
|
|
|
|
`paperforge` 是 PaperForge Lite 的统一入口点,会自动读取 `paperforge.json` 解析路径。
|
|
如需使用 Python 直接调用(备选方式):
|
|
|
|
```bash
|
|
python $(paperforge paths --json | python -c "import json,sys; print(json.load(sys.stdin)['worker_script'])") --vault . status
|
|
```
|
|
|
|
更简单的方式是直接使用 `paperforge status`(见上方)。
|