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

このスキルを使用する理由

エージェントは、明確な説明、実行可能な受け入れ基準、進捗の追跡(Governance-as-codeツールとコマンド、例: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
AI

widget-generator

Logo of f
f

カスタマイズ可能なウィジェットプラグインをprompts.chatのフィードシステム用に生成する

149.6k
0
AI

flags

Logo of vercel
vercel

React フレームワーク

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

Pythonにおけるテンソルと動的ニューラルネットワーク(強力なGPUアクセラレーション)

98.6k
0
開発者