with one click
daily-coding
用于涉及编写或修改源码的日常编码任务。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
用于涉及编写或修改源码的日常编码任务。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Use when the user asks to generate or refresh an architecture map, structure diagram, core call flow, local viewer assets, or runs ~map. Produces hello-scholar native architecture-map.json plus compact Markdown and Mermaid companion artifacts.
Use when the user asks to open the architecture viewer, view diagrams, inspect node evidence, export the local architecture map, or troubleshoot hello-scholar map view/export behavior.
实验分析命令,基于 experiment package、runs、metrics 和 evidence 形成结果解释与下一轮实验计划。
实现命令,把 plan package、change record 或 experiment package 落成代码、配置、文档或实验变更。
Use only when the user explicitly types ~map. Generates or refreshes the hello-scholar native architecture map by invoking the architecture-map workflow, then validates and points to the local viewer.
当用户要求“create git commit”、“manage branches”、“follow git workflow”、“use Conventional Commits”、“handle merge conflicts”,或询问 Git 分支策略、版本控制最佳实践、Pull Request 流程时使用。该 skill 提供面向团队协作的完整 Git workflow 指南。
| name | daily-coding |
| description | 用于涉及编写或修改源码的日常编码任务。 |
| version | 1.0.0 |
| tags | ["Coding","Daily","Checklist"] |
一个最小化的编码质量保障清单,用于确保每次代码修改都遵循最佳实践。
在以下场景使用该 skill:
project-layout-governance不要在以下场景使用该 skill:
bug-detective、architecture-design 或 tdd-guide 等专门 skills 覆盖的工作project-layout-governance 判断文件类别、owner、目标路径、Git policy 和清理/提升规则;优先遵循现有项目结构anytmux 或等价可恢复方式运行;短小确定性检查可直接运行print / console.log 调试语句和临时文件# Don't
def process(data=[]): # Mutable default argument
pass
# Should
def process(data: list | None = None):
data = data or []
# Don't
except: # Bare except
pass
# Should
except ValueError as e:
logger.error(f"Processing failed: {e}")
raise
pathlib 处理文件路径,避免 path traversal{ data, meta? } 与 { error: { code, message, details? } }catch、静默降级和无记录回退;降级必须保留可诊断证据