ln-130-tasks-docs-creator
Creates task management docs (kanban board, workflow rules) with configured tracker integration. Use when setting up task tracking for a project.
What this skill does
> **Paths:** File paths (`references/`, `../ln-*`) are relative to this skill directory.
**Type:** L2 Worker
**Category:** 1XX Documentation Pipeline
# Tasks Documentation Creator
This skill creates task management documentation: docs/tasks/README.md (task management system rules) and docs/tasks/kanban_board.md (configured tracker integration with Epic Story Counters).
## Purpose
Create and validate task management documentation (docs/tasks/). Generates README.md with workflow rules and kanban_board.md with tracker integration that adapts to the configured provider (linear/github/file), including interactive setup for provider-specific configuration.
## When to Use This Skill
**This skill is a L2 WORKER** invoked by **ln-100-documents-pipeline** orchestrator OR used standalone.
Use this skill when:
- Creating task management documentation (docs/tasks/)
- Setting up tracker integration and kanban board
- Validating existing task documentation structure and content
- Configuring provider-specific tracker settings (linear: Team Name/UUID/Key; github: repository/project_number; file: nothing)
**Part of workflow**: ln-100-documents-pipeline → ln-110-project-docs-coordinator → ln-120-reference-docs-creator → **ln-130-tasks-docs-creator** → ln-140-test-docs-creator (optional)
## Workflow
The skill follows a **3-phase workflow**: CREATE → VALIDATE STRUCTURE → VALIDATE CONTENT.
**MANDATORY READ:** Load `references/docs_quality_contract.md`, and `references/markdown_read_protocol.md`.
Optional rule catalog: load `references/docs_quality_rules.json` only when exact rule IDs, path matrices, or allowlisted placeholder exceptions are needed.
**Phase 1: CREATE** - Create tasks/README.md from template with SCOPE tags, workflow rules, configured tracker integration
**Phase 2: VALIDATE STRUCTURE** - Auto-fix structural violations (SCOPE tags, sections, Maintenance, POSIX)
**Phase 3: VALIDATE CONTENT** - Validate semantic content + provider-conditional Tracker Configuration handling (placeholder detection, provider-specific field validation, interactive user prompts). Raw placeholders are allowed only during setup for `docs/tasks/README.md` and `docs/tasks/kanban_board.md`; published output must not leak unresolved markers into any other document.
---
## Phase 1: Create tasks/README.md
**Objective**: Create task management system documentation from template.
**When to execute**: Always (first phase)
**Process**:
1. **Check if tasks/README.md exists**:
- Use Glob tool: `pattern: "docs/tasks/README.md"`
- If file exists:
- Skip creation
- Log: `✓ docs/tasks/README.md already exists (preserved)`
- Proceed to Phase 2
- If NOT exists:
- Continue to step 2
2. **Create tasks directory**:
- Create the `docs/tasks/` directory if it doesn't exist
3. **Create tasks/README.md from template**:
- **MANDATORY READ:** Load `references/templates/tasks_readme_template.md`
- Copy template → `docs/tasks/README.md`
- Replace placeholders:
- `{{DATE}}` → current date (YYYY-MM-DD)
- Template contains:
- Full shared header contract (`SCOPE`, `DOC_KIND`, `DOC_ROLE`, `READ_WHEN`, `SKIP_WHEN`, `PRIMARY_SOURCES`)
- Story-Level Test Task Pattern
- Kanban Board Structure (Epic Grouping Pattern)
- Linear Integration (MCP methods)
- Quick Navigation, Agent Entry, and Maintenance sections
4. **Notify user**:
- If created: `✓ Created docs/tasks/README.md with task management rules`
- If skipped: `✓ docs/tasks/README.md already exists (preserved)`
**Output**: docs/tasks/README.md (created or existing)
---
## Phase 2: Validate Structure
**Objective**: Ensure tasks/README.md and kanban_board.md comply with structural requirements. Auto-fix violations.
**When to execute**: After Phase 1 completes (files exist or created)
**Process**:
### 2.1 Validate SCOPE tags
**Files to check**: docs/tasks/README.md, docs/tasks/kanban_board.md (if exists)
For each file:
1. Read the opening block
2. Check for `<!-- SCOPE: ... -->` tag and metadata markers
3. Expected values:
- tasks/README.md: `<!-- SCOPE: Task tracking system workflow and rules ONLY -->`
- kanban_board.md: `<!-- SCOPE: Quick navigation to active tasks in Linear -->`
4. **If missing:**
- Use Edit tool to add SCOPE tag after first heading
- Log: `⚠ Auto-fixed: Added missing SCOPE tag to {filename}`
### 2.2 Validate required sections
**MANDATORY READ:** Load `references/questions.md` for validation specs (section names, heuristics, special handling rules).
**For tasks/README.md**:
- Required sections (from questions.md):
- "Linear Integration" OR "Core Concepts" (Linear MCP methods)
- "Task Workflow" OR "Critical Rules" (state transitions)
- "Task Templates" (template references)
- For each section:
- Check if section header exists (case-insensitive)
- **If missing:**
- Use Edit tool to add the section with minimal concrete guidance or an explicit empty-state note
- Log: `⚠ Auto-fixed: Added missing section '{section}' to tasks/README.md`
**For kanban_board.md** (if exists):
- Required sections:
- "Linear Configuration" (Team Name, UUID, Key)
- "Work in Progress" OR "Epic Tracking" (Kanban sections)
- For each section:
- Check if section header exists
- **If missing:**
- Use Edit tool to add section with placeholder
- Log: `⚠ Auto-fixed: Added missing section '{section}' to kanban_board.md`
### 2.3 Validate Maintenance section
**Files to check**: docs/tasks/README.md, docs/tasks/kanban_board.md (if exists)
For each file:
1. Search for `## Maintenance` header in last 20 lines
2. **If missing:**
- Use Edit tool to add at end of file:
```markdown
## Maintenance
**Update Triggers:**
- When Linear workflow changes
- When task templates are added/modified
- When label taxonomy changes
**Last Updated:** {current_date}
```
- Log: `⚠ Auto-fixed: Added Maintenance section to {filename}`
### 2.4 Validate POSIX line endings
**Files to check**: docs/tasks/README.md, docs/tasks/kanban_board.md (if exists)
For each file:
1. Check if file ends with single newline character
2. **If missing:**
- Use Edit tool to add final newline
- Log: `⚠ Auto-fixed: Added POSIX newline to {filename}`
### 2.5 Report validation summary
Log summary:
```
✓ Structure validation completed:
tasks/README.md:
- SCOPE tag: [added/present]
- Required sections: [count] sections [added/present]
- Maintenance section: [added/present]
- POSIX endings: [fixed/compliant]
kanban_board.md:
- SCOPE tag: [added/present/skipped - file not exists]
- Required sections: [count] sections [added/present/skipped]
- Maintenance section: [added/present/skipped]
- POSIX endings: [fixed/compliant/skipped]
```
If violations found: `⚠ Auto-fixed {total} structural violations`
**Output**: Structurally valid task management documentation
---
## Phase 3: Validate Content
**Objective**: Ensure each section answers its validation questions with meaningful content. Special handling for Linear Configuration (placeholder detection, user prompts, UUID/Team Key validation).
**When to execute**: After Phase 2 completes (structure valid, auto-fixes applied)
**Process**:
### 3.1 Load validation spec
**MANDATORY READ:** Load `references/questions.md` — parse sections and extract validation heuristics.
### 3.2 Validate kanban_board.md → Linear Configuration (Special Handling)
**Question**: "What is the Linear team configuration?"
**Step 3.2.1: Check if kanban_board.md exists**:
- Use Glob tool: `pattern: "docs/tasks/kanban_board.md"`
- If NOT exists:
- Log: `ℹ kanban_board.md not found - skipping Linear Configuration validation`
- Skip to Step 3.3
- If exists:
- Continue to Step 3.2.2
**Step 3.2.2: Read Linear Configuration section**:
- Read `docs/tasks/kanban_board.md`
- Locate `## Linear Configuration` section
- Extract Team Name, Team UUID, Team Key values
*Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit — setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard — shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.