Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/tomes --skill issue-from-notes명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | issue-from-notes |
| description | > Use when this capability is needed. |
Transform unstructured meeting notes, transcriptions, or descriptions into well-structured GitHub issue bodies matching the project's issue templates.
Based on the input, classify as one of:
If ambiguous, ask the user.
Read the corresponding template from the project's .github/ISSUE_TEMPLATE/ directory:
| Type | Template file |
|---|---|
| Feature | .github/ISSUE_TEMPLATE/1_feature_request.md |
| Enhancement | .github/ISSUE_TEMPLATE/2_enhancement_request.md |
| Bug | .github/ISSUE_TEMPLATE/3_bug_report.md |
| Documentation | .github/ISSUE_TEMPLATE/4_documentation_change.md |
Parse the user's notes and map information to the template sections. Follow these rules:
EventHandlingComponent, AccessSerializingRepository, CommandBusN/A rather than leaving it blankPropose a concise, descriptive title (under 80 chars). Patterns:
@EventSourcedEntity - doesn't evolve immutable entities"AccessSerializingRepository"Derive a kebab-case file name from the title, e.g.:
@EventSourcedEntity - doesn't evolve immutable entities" -> polymorphic-event-sourced-entity-doesnt-evolve-immutable-entities.mdAccessSerializingRepository" -> allow-usage-of-access-serializing-repository.mdPresent the proposed title to the user before writing the file.
Structure the output file as:
# <Issue Title>
<filled template body>
The title goes as an # H1 header at the top, followed by the filled-in template sections.
Write the file to: .ai/temp/skills/issue-from-notes/<file-name>.md
Create the directory if it doesn't exist. Print the file path after writing.
Before writing the file, verify:
# H1 header contains the issue titlejava, kotlin, etc.)For real-world examples of well-written issues in this project, see references/examples.md. Consult these examples to match the tone, depth, and structure expected in this project's issues.
Source: AxonIQ/AxonFramework — distributed by TomeVault.