← ClaudeAtlas

weekly-reportlisted

Turn a list of JIRA issue keys into one short Korean line per issue, ready to paste into a weekly-report spreadsheet (one line per cell). Give it several keys (e.g. APIS-1111, TOOLS-4324) and it fetches each issue with the jira-fetch skill, reads the description, and compresses it into a single 개조식 line ending in 명사형: 대상 + 무엇을 하는가, no procedures or checklists. Summarizes what the issue IS, not progress or status. Use when writing the weekly report and you need each issue boiled down to one line. Triggers on phrases like '주간보고 정리', '주간 보고용으로 요약', '이 이슈들 한 줄로 정리', '주간보고 한 줄씩 만들어줘', 'weekly report lines for these issues'.
Srltas/claude-skills · ★ 0 · Data & Documents · score 67
Install: claude install-skill Srltas/claude-skills
# Weekly-report lines from JIRA issues Compress each issue into **one line** for the weekly-report spreadsheet: one line per cell, in the order the keys were given. Draft only, nothing is posted anywhere. ## Step 0: Prereq The **jira-fetch** skill installed at `~/.claude/skills/jira-fetch/` (this skill calls its helper). Its constraints apply: only publicly readable projects (CBRD, TOOLS, APIS, ...) can be read; internal-only projects such as CUBRIDQA fail with `HTTP 401`. ## Step 1: Parse the keys From `$ARGUMENTS`, take every `PROJECT-NUMBER`. Accept commas or spaces, a pasted issue URL, and lower case (`apis-1111` -> `APIS-1111`). Drop duplicates and **keep the order given**: the report rows should match what the user typed. ## Step 2: Fetch all of them in one call ```bash bash ~/.claude/skills/jira-fetch/assets/fetch_jira.sh APIS-1111 TOOLS-4324 ... ``` The helper takes many keys at once, so call it **once** for the whole list. It writes `./jira/<KEY>.md` (title as `# heading`, then the description). Skip any key whose `.md` already exists: do not re-fetch. A key that cannot be read is simply reported as missing, and the rest still succeed. ## Step 3: Write one line per issue Read each `<KEY>.md` and compress it. **The line answers "what is this issue", not "what did I do" or "what is its status".** ``` APIS-1088 JDBC 구버전 PROTOCOL 호환성 코드 제거 TOOLS-4888 CMT 단위 테스트 라이브러리 Java 8 지원 버전으로 업그레이드 ``` Rules: - **Form**: `<KEY> <요약>`, key first, one space, then the sum