包含: - 核心配置文件(AGENTS.md, SOUL.md, USER.md等) - 记忆系统(memory/文件夹) - 技能库(skills/文件夹) - 小说内容(novel/文件夹) - .gitignore配置
72 lines
1.6 KiB
YAML
72 lines
1.6 KiB
YAML
name: Bug Report
|
|
description: Something isn't working as expected
|
|
labels: ["bug"]
|
|
body:
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: What happened?
|
|
description: Describe the bug clearly. Include the exact error message if any.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: steps
|
|
attributes:
|
|
label: Steps to reproduce
|
|
description: Minimal steps to reproduce the issue.
|
|
placeholder: |
|
|
1. inkos init test
|
|
2. inkos book create --title '...' --genre xuanhuan
|
|
3. inkos write next ...
|
|
4. See error: ...
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: Expected behavior
|
|
description: What should have happened instead?
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: InkOS version
|
|
description: Output of `inkos --version`
|
|
placeholder: "0.4.5"
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: os
|
|
attributes:
|
|
label: Operating system
|
|
options:
|
|
- macOS
|
|
- Linux
|
|
- Windows (WSL)
|
|
- Windows (native)
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: model
|
|
attributes:
|
|
label: LLM provider / model
|
|
description: e.g. openai/gpt-4o, anthropic/claude-sonnet, ollama/qwen3:8b
|
|
placeholder: "openai/gpt-4o"
|
|
validations:
|
|
required: false
|
|
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Relevant logs
|
|
description: Paste any error output, truncated chapter content, or debug logs.
|
|
render: shell
|
|
validations:
|
|
required: false
|