hopmark
2
总安装量
2
周安装量
#71638
全站排名
安装命令
npx skills add https://github.com/rsbohn/hopmark --skill hopmark
Agent 安装分布
cline
2
gemini-cli
2
github-copilot
2
codex
2
kimi-cli
2
cursor
2
Skill 文档
Hopmark Web Workflow
Purpose
Use this skill to interact with the CircuitPython device at circuitpython.local via Web Workflow APIs.
Common workflows
CLI (uv run)
CP_WEB_WORKFLOW_HOST=<hostname|ip-address>
read -p "password? " CP_WEB_WORKFLOW_PASSWORD
uv run ./skills/hopmark/hopmark.py list
uv run ./skills/hopmark/hopmark.py read /code.py
uv run ./skills/hopmark/hopmark.py write /hello.txt --text "hello"
uv run ./skills/hopmark/hopmark.py delete /hello.txt
Perhaps you will alias hop="uv run skills/hopmark/hopmark.py"
Notes
- Requires
aiohttpfor the CLI tool; install in a venv if needed. - CLI defaults can be overridden with
CP_WEB_WORKFLOW_HOSTandCP_WEB_WORKFLOW_PASSWORD(default password isno-password-provided). - Web Workflow uses HTTP Basic Auth with a blank username and the device password.
- The file listing endpoint returns JSON (
/fs/) when available.