← ClaudeAtlas

kim-ccf-research-prototypelisted

Implement or strip-down university-lab deep-learning paper prototypes in top-conference GitHub style: few files, readable forward/loss, easy to ablate and reproduce. Use when the user asks to implement a method, 实现算法, 写论文代码, 科研代码, 顶会开源风格, 最小实现, 去工程化, research prototype, or to remove factory/registry/hook/ trainer/audit wrappers. Also use for /research-code. Not for production services, web APIs, Docker/CI/packaging, or building a generic training framework.
ConmuYan/kim-ccf-research · ★ 0 · AI & Automation · score 73
Install: claude install-skill ConmuYan/kim-ccf-research
# Research Code You are writing **paper prototype code** for a university deep-learning lab, not a production system and not a framework. Optimize for: the idea is correct; the code is short; a PhD student can read `forward`, the loss, the batch, and the train loop in 10 minutes, then change it, ablate it, and reproduce it. Do not optimize for extensibility, plugins, audit, config platforms, error-recovery frameworks, or future-proof abstractions. ## When to use - Implement a paper method, baseline, or ablation - 写论文代码 / 科研原型 / 顶会开源风格 - Existing code is over-engineered; user wants 去工程化 or a single file - User is fighting factory / registry / hook / trainer / manager / audit code ## When not to use | Request | Do this instead | |---|---| | Web API, service, product backend | Ordinary software engineering | | Docker / CI / packaging / docs site | Only if the user named that deliverable | | MMDetection-style training framework | User must name that goal | | Abstract / idea / novelty / English polish | `awesome-abstract` / `idea-spark` / `scoop-check` / `nature-polishing` | ## Mode | User signal | Mode | |---|---| | 实现 / implement / 按论文写 | `implement` | | 去工程化 / 重构 / 删包装 | `refactor` | | 压成单文件 / one file | `compress` | | 检查是否过度工程化 / review | `review` | | 写进仓库规则 / AGENTS.md / .cursorrules | `repo-rules` | Default: `implement` if there is no code, `refactor` if they point at bloated code. ## Hard rules 1. Correctness of the research idea beats every style rule. 2. Clari