dev-log
✓AI 调试协作方案。将 console.log 转为 HTTP 请求收集日志,用户操作完成后 AI 可自行查看分析,无需截图或复制控制台。支持 Claude Code、OpenCode、Cursor。
Installation
SKILL.md
function Counter() { const [count, setCount] = useState(0); const increment = () => { fetch('http://localhost:54321',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({sessionId:'sess8x7k2p',time:new Date().toTimeString().split(' ')[0],type:'before-increment',data:{count}})}).catch(()=>{}); setCount(c => c + 1); };
async function fetchData(userId) { fetch('http://localhost:54321',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({sessionId:'sessa1b2c3',time:new Date().toTimeString().split(' ')[0],type:'fetch-start',data:{userId}})}).catch(()=>{});
try { const response = await fetch(/api/users/${userId}); fetch('http://localhost:54321',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({sessionId:'sessa1b2c3',time:new Date().toTimeString().split(' ')[0],type:'fetch-response',data:{status:response.status,ok:response.ok}})}).catch(()=>{});
AI 调试协作方案。将 console.log 转为 HTTP 请求收集日志,用户操作完成后 AI 可自行查看分析,无需截图或复制控制台。支持 Claude Code、OpenCode、Cursor。 Source: dimple-smile/agent-skills.
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/dimple-smile/agent-skills --skill dev-log- Category
- </>Dev Tools
- Verified
- ✓
- First Seen
- 2026-02-11
- Updated
- 2026-02-18
Quick answers
What is dev-log?
AI 调试协作方案。将 console.log 转为 HTTP 请求收集日志,用户操作完成后 AI 可自行查看分析,无需截图或复制控制台。支持 Claude Code、OpenCode、Cursor。 Source: dimple-smile/agent-skills.
How do I install dev-log?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/dimple-smile/agent-skills --skill dev-log Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/dimple-smile/agent-skills
Details
- Category
- </>Dev Tools
- Source
- skills.sh
- First Seen
- 2026-02-11