Agent Plugins Marketplace
All plugins

worklog

v0.24.9

Local-first, git-native spec-driven development with tracked plans, tickets, pull requests, roadmaps, status reports, and wiki publishing.

CodexClaude CodeAgent Plugins13 Skills

By Rick HightowerLicense: MIT10 GitHub starsUpdated 2 hours ago

Directory evidence

Runtimes
Codex, Claude Code, and Agent Plugins
Parsed components
13 skill or MCP entries
Source updated
Aug 30, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install worklog for Codex and Claude Code

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add worklog-3@agent-plugin-marketplace

Paste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/SpillwaveSolutions/wiki_ticket_sdd

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugin/.

Plugin files

plugin/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── plugin.json
├── skills/classify/SKILL.md
├── skills/design-docs/SKILL.md
├── skills/integration-guide/SKILL.md
├── skills/issue-description/SKILL.md
├── skills/merge-green/SKILL.md
├── skills/plan-capture/SKILL.md
├── skills/plan-next/SKILL.md
├── skills/pr-description/SKILL.md
├── skills/release/SKILL.md
├── skills/status-report/SKILL.md
├── skills/ticket-sync/SKILL.md
├── skills/wiki-publish/SKILL.md
└── skills/work-track/SKILL.md

Included Skills13

classifyskills/classify/SKILL.md

Propose work items from recent conversation (flag-gated classifier). Use when the Stop hook requests classification or when asked to sweep a conversation for untracked work. Propose-only: writes .work/suggestions.jsonl, never the event log.

design-docsskills/design-docs/SKILL.md

Generate or sync the design document or code walkthrough. Live current pair regenerated from the actual code; a release freeze is a short tag+hash+delta note, not a full dated copy. Uses document-specialist v3.2.2, design-doc-mermaid v1.1.1, plantuml v1.2.2. Use when asked for a design doc, architecture doc, code walkthrough, or requirements doc, and automatically (background agents) at every release.

integration-guideskills/integration-guide/SKILL.md

Look up how wiki_ticket_sdd integrates with a specific SDD tool or ticket/wiki system — Superpowers, GSD, SpecKit, OpenSpec, Jira, Confluence, GitHub, GitLab, Azure DevOps (ADO), AWS CodeCatalyst, or Google Cloud DevOps (GCP). Use when asked how to set up, configure, or use one of these, or when ticket-sync/wiki-publish need runtime guidance for a system with no shipped adapter.

issue-descriptionskills/issue-description/SKILL.md

Write rich, durable issue/ticket descriptions. Use when creating or updating tickets by hand, when composing bodies for ticket-sync, or when a work item needs a description a future reader (human or agent) can act on without archaeology.

merge-greenskills/merge-green/SKILL.md

Merge PRs only when all quality gates pass. Use whenever asked to merge a PR, complete a merge, or land a branch — arms GitHub auto-merge and falls back to polling instead of merging blind or bypassing.

plan-captureskills/plan-capture/SKILL.md

Capture an approved plan as tracked work items. Use when exiting plan mode, when the user approves a plan, or says "capture this plan". Writes docs/plans/<date>-<slug>.md and appends the plan's tasks to .work/todo.jsonl via bin/worklog.

plan-nextskills/plan-next/SKILL.md

Decide what to work on next — use when asked "what should we do next", "what's most important", or when planning a new work session.

pr-descriptionskills/pr-description/SKILL.md

Write a high-context PR description for any substantial PR. Use whenever creating or editing a pull request body — the description must let a reader with zero prior context understand what is being built, why, where it sits in the larger system, and exactly what changed, without digging through tickets or code.

releaseskills/release/SKILL.md

Cut a versioned release — stamp the changelog, snapshot the roadmap, tag, create the platform release, publish, and sync. Use when asked to "cut a release", "ship vX.Y.Z", "tag a version", or when an unreleased changelog section is ready to go out.

status-reportskills/status-report/SKILL.md

Generate a status report. Use when asked for a status report, a standup summary, "what changed this week", or "what did we ship". Writes docs/status/<date>-<kind>.md, commits, and publishes — never paste an unrecorded status into chat.

ticket-syncskills/ticket-sync/SKILL.md

Push work items to the team's configured ticketing system (GitHub Issues, Jira, Azure DevOps, GitLab, Linear...). Use when asked to sync tickets, after closing out a plan, or when items should be visible in the tracker. Push and pull.

wiki-publishskills/wiki-publish/SKILL.md

Publish docs (roadmap, plans, user guide, status) to the team's configured wiki. Use when asked to publish/sync docs to the wiki, after cutting a roadmap snapshot, or when a plan/status report should be visible outside the repo.

work-trackskills/work-track/SKILL.md

Track work items — use when creating, updating, closing, or listing work items, or when discovering unplanned work mid-flight ("we also need to…", a bug found while doing something else).

Plugin manifests3

plugin/.codex-plugin/plugin.json
{
  "name": "worklog",
  "version": "0.24.9",
  "description": "Local-first, git-native spec-driven development with tracked plans, tickets, pull requests, roadmaps, status reports, and wiki publishing.",
  "author": {
    "name": "Rick Hightower",
    "url": "https://github.com/RichardHightower"
  },
  "homepage": "https://github.com/SpillwaveSolutions/wiki_ticket_sdd",
  "repository": "https://github.com/SpillwaveSolutions/wiki_ticket_sdd",
  "license": "MIT",
  "keywords": [
    "work-tracking",
    "planning",
    "roadmap",
    "tickets",
    "spec-driven-development"
  ],
  "skills": "./skills/",
  "hooks": "./hooks/codex-hooks.json",
  "interface": {
    "displayName": "WikiTicket SDD",
    "shortDescription": "Git-native plans, tickets, PRs, and wiki publishing",
    "longDescription": "Turn plans into durable design records and tracked work, synchronize tickets and pull requests, generate roadmaps and status reports, and publish project documentation to a wiki.",
    "developerName": "Spillwave Solutions",
    "category": "Productivity",
    "capabilities": [
      "Read",
      "Write"
    ],
    "websiteURL": "https://github.com/SpillwaveSolutions/wiki_ticket_sdd",
    "defaultPrompt": [
      "Track this implementation with WikiTicket SDD.",
      "Sync the current worklog with tickets and the wiki.",
      "Prepare the PR description from tracked work."
    ],
    "brandColor": "#6B4EFF"
  }
}
plugin/.claude-plugin/plugin.json
{
  "name": "worklog",
  "version": "0.24.9",
  "description": "Local-first, git-native visible-WIP work tracking: plans become tickets, roadmaps stay generated, unplanned work gets recorded. Skills, /worklog:* commands, and an ExitPlanMode capture hook.",
  "author": {
    "name": "Rick Hightower"
  },
  "license": "MIT",
  "keywords": [
    "work-tracking",
    "planning",
    "roadmap",
    "tickets",
    "spec-driven-development"
  ]
}
plugin/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "worklog",
  "version": "0.24.9",
  "description": "WikiTicket SDD (worklog): git-native plans, tickets, roadmaps, and wiki publishing. Multi-host bindings. Knowledge-tree writes live in okf-plugin.",
  "author": {
    "name": "Rick Hightower",
    "url": "https://github.com/RichardHightower"
  },
  "homepage": "https://github.com/SpillwaveSolutions/wiki_ticket_sdd",
  "repository": "https://github.com/SpillwaveSolutions/wiki_ticket_sdd",
  "license": "MIT",
  "keywords": [
    "worklog",
    "isolation",
    "agent-plugins",
    "claude-code",
    "grok-build",
    "codex",
    "deep-agents",
    "grok-bot"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[worklog on Agent Plugins Marketplace](https://pluginsmp.com/plugins/worklog-3)