Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/axfinn/devtools --skill recipe명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | recipe |
| description | 每日菜谱 — 查看/创建/更新菜谱,支持详细步骤、AI 推荐。触发:今天吃什么、菜谱、做饭、推荐菜 |
| triggers | ["菜谱","今天吃什么","做饭","推荐菜","recipe"] |
通过 DevTools 后端 API 管理菜谱。后端默认运行在 https://t.jaxiu.cn。
# 今日推荐(无需登录)
curl -s https://t.jaxiu.cn/api/recipe/default
# 带详细步骤的菜谱
curl -s https://t.jaxiu.cn/api/recipe/detailed
curl -s -X POST https://t.jaxiu.cn/api/recipe \
-H "Content-Type: application/json" \
-d '{
"title": "我的菜谱本",
"password": "your_password"
}'
# 返回: {"id":"xxx","creator_key":"xxx"}
curl -s -X POST https://t.jaxiu.cn/api/recipe/login \
-H "Content-Type: application/json" \
-d '{"id":"xxx","password":"your_password"}'
# 获取
curl -s "https://t.jaxiu.cn/api/recipe/{id}?creator_key=xxx"
# 或创建者
curl -s "https://t.jaxiu.cn/api/recipe/{id}/creator?creator_key=xxx"
# 更新
curl -s -X PUT https://t.jaxiu.cn/api/recipe/{id} \
-H "Content-Type: application/json" \
-d '{"creator_key":"xxx","title":"新名称","content":"更新内容"}'
# 删除
curl -s -X DELETE "https://t.jaxiu.cn/api/recipe/{id}?creator_key=xxx"
当用户说"今天吃什么"时,调用获取今日菜谱 API。 当用户说"记录这个菜谱"时,使用更新档案 API。
Base URL: https://t.jaxiu.cn