neplexlabs/commandkit

commandkit-tasks

Implement scheduled and dynamic jobs with @commandkit/tasks. Use for static task definitions, dynamic task creation, driver setup, and resilient job execution patterns.

First seen Apr 5, 2026

Installation

$ npx skills add neplexlabs/commandkit --skill commandkit-tasks

Also in this package

Other skills from neplexlabs/commandkit · top by installs.

npx skills add neplexlabs/commandkit

Browse all from neplexlabs/commandkit

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 166
License LICENSE
Default branch main
Open issues 3
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.2.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,982 B
  • docs README.md 507 B
  • docs SUMMARY.md 192 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 33 installs

SKILL.md

CommandKit Tasks Plugin

Activation guidance

Use for recurring jobs, delayed reminders, and background processing flows.

Required filesystem expectations

  • plugin registration in commandkit.config.ts
  • static tasks in src/app/tasks/**
  • driver bootstrap module (for example src/bootstrap/tasks.ts)

Execution workflow

  1. Register tasks plugin.
  2. Configure and initialize driver.
  3. Add static tasks and optional dynamic creation APIs.
  4. Add idempotency, error handling, and cancellation support.

Guardrails

  • Keep tasks idempotent where retries are possible.
  • Validate dynamic task payload and schedule inputs.

Reference index

Name Description
references/00-filesystem-structure.md Task folder and bootstrap layout expectations.
references/01-plugin-and-driver-setup.md Plugin + driver setup patterns.
references/02-static-task.md Static task definition pattern and lifecycle notes.
references/03-dynamic-task.md Dynamic task scheduling pattern and payload guidance.
references/04-delete-task.md Task cancellation/deletion pattern and safeguards.

Tool index

Name Description
tools/generate-task-template.mjs Prints static or dynamic task template code.