wi-writer — ai-agent wi-writer, govctl, community, ai-agent, ide skills, governance, Claude Code, Cursor, Windsurf

v1.0.0

이 스킬 정보

구조화된 작업 항목 관리와 명확한 수락 기준이 필요한 개발 에이전트에게 적합합니다. Write well-structured work items with proper acceptance criteria. Use when: (1) Creating work items, (2) Adding acceptance criteria, (3) User mentions work item, task, WI, or ticket

# Core Topics

govctl-org govctl-org
[99]
[8]
Updated: 3/10/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
7/11
Quality Score
44
Canonical Locale
en
Detected Body Locale
en

구조화된 작업 항목 관리와 명확한 수락 기준이 필요한 개발 에이전트에게 적합합니다. Write well-structured work items with proper acceptance criteria. Use when: (1) Creating work items, (2) Adding acceptance criteria, (3) User mentions work item, task, WI, or ticket

이 스킬을 사용하는 이유

에이전트는 작업 항목을 생성 및 관리할 수 있으며, 명확한 설명, 실행 가능한 수락 기준 및 진행 상황 추적(治理 즉 코드 도구 및 명령, 예: govctl 사용)을 제공하여 효율적인 소프트웨어 개발 및 협력을 가능하게 합니다.

최적의 용도

구조화된 작업 항목 관리와 명확한 수락 기준이 필요한 개발 에이전트에게 적합합니다.

실행 가능한 사용 사례 for wi-writer

명확한 설명 및 수락 기준을 사용하여 작업 항목 생성
진행 상황 추적 및 작업 항목 저널 업데이트
작업 항목에 주석 및 참조를 추가하여 더 나은 컨텍스트를 얻음

! 보안 및 제한 사항

  • govctl 명령줄 도구 필요
  • Governance-as-code 워크플로에 특정

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is wi-writer?

구조화된 작업 항목 관리와 명확한 수락 기준이 필요한 개발 에이전트에게 적합합니다. Write well-structured work items with proper acceptance criteria. Use when: (1) Creating work items, (2) Adding acceptance criteria, (3) User mentions work item, task, WI, or ticket

How do I install wi-writer?

Run the command: npx killer-skills add govctl-org/govctl/wi-writer. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for wi-writer?

Key use cases include: 명확한 설명 및 수락 기준을 사용하여 작업 항목 생성, 진행 상황 추적 및 작업 항목 저널 업데이트, 작업 항목에 주석 및 참조를 추가하여 더 나은 컨텍스트를 얻음.

Which IDEs are compatible with wi-writer?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for wi-writer?

govctl 명령줄 도구 필요. Governance-as-code 워크플로에 특정.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add govctl-org/govctl/wi-writer. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use wi-writer immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

wi-writer

Install wi-writer, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Work Item Writer

Write work items with clear descriptions and actionable acceptance criteria.

Quick Reference

bash
1govctl work new --active "<title>" 2govctl work set <WI-ID> description "Task scope description" 3govctl work add <WI-ID> acceptance_criteria "<category>: <description>" 4govctl work add <WI-ID> journal "Progress update" --scope module 5govctl work add <WI-ID> notes "Key observation" 6govctl work add <WI-ID> refs RFC-NNNN 7govctl work tick <WI-ID> acceptance_criteria "<pattern>" -s done 8govctl work move <WI-ID> done

Work Item Structure

Title

Concise, action-oriented. Describes what will be done.

  • Good: "Add validation for clause cross-references"
  • Bad: "Fix stuff" or "Work on the thing"

Description

Purpose: Task scope declaration — what needs to be done.

Replace the placeholder immediately. One paragraph explaining:

  • What the work accomplishes
  • Why it's needed
  • Any relevant context

Important: Description is for task scope, NOT execution tracking. Use journal for progress and outcomes, and notes for durable learnings.

Journal

Purpose: Execution process tracking — how the work is progressing.

Journal entries record progress updates, bug fixes, and verification results during execution. Each entry has:

  • date (required): ISO date "YYYY-MM-DD"
  • scope (optional): Topic/module identifier
  • content (required): Markdown text with details
bash
1# Add journal entry (date is auto-filled to today) 2govctl work add <WI-ID> journal "Added journal section rendering to work item output." 3 4# With scope (topic/module tag) 5govctl work add <WI-ID> journal "Fixed parser edge case" --scope parser 6 7# Multi-line via stdin 8govctl work add <WI-ID> journal --scope render --stdin <<'EOF' 9Completed the rendering pipeline. 10All snapshot tests updated. 11EOF

When to add journal entries:

  • After completing a significant chunk of work
  • When fixing bugs during implementation
  • After running verification gates
  • After a failed attempt that changed the next step

Notes

Purpose: Durable learnings — constraints, decisions, and retry rules to remember before the next step.

Notes are concise points recorded anytime, not just at completion. Use for:

  • Why an approach failed
  • What not to retry
  • Constraints or decisions future steps must obey
bash
1govctl work add <WI-ID> notes "Remember to update migration guide" 2govctl work add <WI-ID> notes "API is now async"

Acceptance Criteria

Every criterion MUST have a category prefix for changelog generation:

PrefixChangelog SectionAliases
add:Addedfeat:, feature:, added:
fix:Fixedfixed:
change:Changedchanged:, refactor:, perf:
remove:Removedremoved:
deprecate:Deprecateddeprecated:
security:Securitysec:
chore:(excluded)test:, docs:, ci:, build:
bash
1# Feature work 2govctl work add <WI-ID> acceptance_criteria "add: Implement clause validation" 3govctl work add <WI-ID> acceptance_criteria "add: Error messages include clause ID" 4 5# Bug fix 6govctl work add <WI-ID> acceptance_criteria "fix: Duplicate clause detection" 7 8# Internal 9govctl work add <WI-ID> acceptance_criteria "chore: All tests pass" 10govctl work add <WI-ID> acceptance_criteria "chore: govctl check passes"

References

Link to governing artifacts:

bash
1govctl work add <WI-ID> refs RFC-0001 2govctl work add <WI-ID> refs ADR-0023

Field Semantics Summary

FieldPurposeUpdate Pattern
descriptionTask scope declarationDefine once, rarely change
journalExecution process trackingAppend on each progress
notesDurable learningsAdd when future steps must remember something
acceptance_criteriaCompletion criteriaDefine then tick

Per ADR-0026: Keep description focused on "what", journal on "what happened", and notes on "what to remember next".

Writing Rules

Acceptance Criteria Quality

Each criterion should be:

  • Specific — "Add validate_refs() function" not "Add validation"
  • Testable — Can be verified as done/not-done with no ambiguity
  • Independent — Each criterion stands alone
  • Categorized — Always include the category prefix

Completion Flow

Work items cannot be marked done without ticking all criteria:

bash
1# Tick criteria as you complete them 2govctl work tick <WI-ID> acceptance_criteria "<pattern>" -s done 3 4# When all criteria are done, close the work item 5govctl work move <WI-ID> done

The chore: Pattern

Always add at least one chore: criterion for validation:

bash
1govctl work add <WI-ID> acceptance_criteria "chore: govctl check passes"

This ensures validation is an explicit gate, not an afterthought.

Common Mistakes

MistakeFix
Missing category prefixAlways use add:, fix:, chore:, etc.
Placeholder description left inReplace immediately with real description
Vague criteria: "Feature works"Specific: "add: CLI returns exit code 0 on success"
No chore: criterionAdd "chore: govctl check passes" or "chore: all tests pass"
No refs to governing artifactsLink RFCs/ADRs with work add <WI-ID> refs
Description used for trackingUse journal field for execution progress per ADR-0026
No journal entries for long taskAdd journal entries for significant progress updates

관련 스킬

Looking for an alternative to wi-writer or another community skill for your workflow? Explore these related open-source skills.

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자