# Answer Question

> 通用问答, 回答用户咨询、技术探讨等非错误、非功能需求的 Issue。

- Skill: `ctex-org/answer-question` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ctex-org/answer-question`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ctex-org/answer-question/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ctex-org (https://skillmd.com/u/ctex-org)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/ctex-org/answer-question

---


# answer-question

回答用户的通用查询、技术探讨或使用咨询。

> 遵循 `github-comment` 规范。

只分析本地仓库与 workflow 准备的 Issue 输入。不得调用 `gh`、push 或直接访问 GitHub；
将完整待发布 Markdown 放入结构化输出的 `comment_body`。

## 回答原则

**优先**：
- 直接回答问题，不绕弯子
- 引用代码时附带链接
- 不确定时明确说明

**避免**：
- 过于冗长的解释
- 无关的背景信息
- 模棱两可的表述

## 引用代码

涉及代码时，提供准确位置：
- 使用完整 GitHub 链接格式
- 引用关键代码片段（折叠长代码）

## 模板

```markdown
## 💬 回答 #${issue_number}

{直接简洁的回答}

---

<details>
<summary><h3>📖 技术细节</h3></summary>

**相关代码**: [{文件}:{行号}]({github_link})

```{lang}
{代码片段}
```

{补充解释}

</details>
```

无法确定时：
```markdown
## 💬 回答 #${issue_number}

{说明无法确定的原因}

**可能的方向**:
- {方向 1}
- {方向 2}

<details>
<summary><h3>❓ 需要更多信息</h3></summary>

- {需要什么信息才能准确回答}

</details>
```

