coder
专业的编程助手技能,帮助编写、调试和优化代码
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
专业的编程助手技能,帮助编写、调试和优化代码
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Deep bug analysis to break the fix-forget-repeat cycle. Analyzes root cause category, why fixes failed, prevention mechanisms, and captures knowledge into specs. Use after fixing a bug to prevent the same class of bugs.
Understand and customize the local Trellis architecture inside a user project. Use when modifying .trellis plus platform hooks, settings, agents, skills, commands, prompts, workflows, the channel runtime (trellis channel), bundled runtime agents under .trellis/agents/, selectable workflow templates, registry-backed spec refresh, cross-session memory (trellis mem) generated by trellis init, or AI-facing bundled skills (trellis-channel, trellis-session-insight, trellis-spec-bootstrap) and bundled-skill auto-dispatch flow.
Captures executable contracts and coding conventions into .trellis/spec/ documents. Use when learning something valuable from debugging, implementing, or discussion that should be preserved for future sessions.
数学计算器,支持加减乘除、幂运算等基本数学运算
示例 Skill - 展示 SKILL.md 的标准格式
基于 SOC 职业分类
| name | coder |
| description | 专业的编程助手技能,帮助编写、调试和优化代码 |
Coder Skill 是专业的编程助手技能,帮助用户编写、调试和优化代码。
当用户需要编程相关帮助时使用此技能,例如:
用户: 用 Go 写一个 HTTP 服务器
助手: 这里是一个简单的 Go HTTP 服务器示例:
package main
import (
"fmt"
"net/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, World!")
}
func main() {
http.HandleFunc("/", handler)
fmt.Println("Server starting on :8080")
http.ListenAndServe(":8080", nil)
}
用户: 这个代码有什么问题吗?
助手: 这个代码有几个改进点:
建议使用 echo 或 gin 框架来构建生产级服务。