wi-writer — ai-agent wi-writer, govctl, community, ai-agent, ide skills, governance

v1.0.0

Über diesen Skill

Perfekt für Entwicklungsmittel, die eine strukturierte Arbeitsartikelverwaltung und klare Akzeptanzkriterien benötigen. 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

Perfekt für Entwicklungsmittel, die eine strukturierte Arbeitsartikelverwaltung und klare Akzeptanzkriterien benötigen. 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

Warum diese Fähigkeit verwenden

Ermächtigt die Mittel, Arbeitsartikel mit klaren Beschreibungen, umsetzbaren Akzeptanzkriterien und Fortschrittsverfolgung mit Hilfe von Governance-as-code-Tools und -Befehlen wie govctl zu erstellen und zu verwalten, was einen effizienten Software-Entwicklungs- und Kollaborationsprozess ermöglicht.

Am besten geeignet für

Perfekt für Entwicklungsmittel, die eine strukturierte Arbeitsartikelverwaltung und klare Akzeptanzkriterien benötigen.

Handlungsfähige Anwendungsfälle for wi-writer

Arbeitsartikel mit klaren Beschreibungen und Akzeptanzkriterien erstellen
Fortschrittsverfolgung und Aktualisierung der Arbeitsartikel-Journale
Hinzufügen von Notizen und Referenzen zu Arbeitsartikeln für einen besseren Kontext

! Sicherheit & Einschränkungen

  • Benötigt das Kommandozeilen-Tool govctl
  • Spezifisch für den Governance-as-code-Arbeitsablauf

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 imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

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?

Perfekt für Entwicklungsmittel, die eine strukturierte Arbeitsartikelverwaltung und klare Akzeptanzkriterien benötigen. 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: Arbeitsartikel mit klaren Beschreibungen und Akzeptanzkriterien erstellen, Fortschrittsverfolgung und Aktualisierung der Arbeitsartikel-Journale, Hinzufügen von Notizen und Referenzen zu Arbeitsartikeln für einen besseren Kontext.

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?

Benötigt das Kommandozeilen-Tool govctl. Spezifisch für den Governance-as-code-Arbeitsablauf.

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.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

wi-writer

Install wi-writer, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
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

Verwandte Fähigkeiten

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

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Erzeugen Sie anpassbare Widget-Plugins für das Prompts.Chat-Feed-System

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Das React-Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensor und dynamische neuronale Netze in Python mit starker GPU-Beschleunigung

98.6k
0
Entwickler