fix-logs
1
总安装量
1
周安装量
#49343
全站排名
安装命令
npx skills add https://github.com/duc01226/easyplatform --skill fix-logs
Agent 安装分布
antigravity
1
gemini-cli
1
Skill 文档
IMPORTANT: Analyze the skills catalog and activate the skills that are needed for the task during the process.
â ï¸ Anti-Hallucination Reminder
Before modifying ANY code: Verify assumptions with actual code evidence. Search for usages, read implementations, trace dependencies. If confidence < 90% on any change, investigate first or ask user. See .claude/skills/shared/anti-hallucination-protocol.md for full protocol.
Mission
$ARGUMENTS
Workflow
- Check if
./logs.txtexists:- If missing, set up permanent log piping in project’s script config (
package.json,Makefile,pyproject.toml, etc.):- Bash/Unix: append
2>&1 | tee logs.txt - PowerShell: append
*>&1 | Tee-Object logs.txt
- Bash/Unix: append
- Run the command to generate logs
- If missing, set up permanent log piping in project’s script config (
- Use
debuggersubagent to analyze./logs.txtand find root causes:- Use
Grepwithhead_limit: 30to read only last 30 lines (avoid loading entire file) - If insufficient context, increase
head_limitas needed
- Use
- Use
scoutsubagent to analyze the codebase and find the exact location of the issues, then report back to main agent. - Use
plannersubagent to create an implementation plan based on the reports, then report back to main agent. - Start implementing the fix based the reports and solutions.
- Use
testeragent to test the fix and make sure it works, then report back to main agent. - Use
code-reviewersubagent to quickly review the code changes and make sure it meets requirements, then report back to main agent. - If there are issues or failed tests, repeat from step 3.
- After finishing, respond back to user with a summary of the changes and explain everything briefly, guide user to get started and suggest the next steps.
IMPORTANT Task Planning Notes
- Always plan and break many small todo tasks
- Always add a final review todo task to review the works done at the end to find any fix or enhancement needed