Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Task Management --- name: task description: Manage tasks across nested projects. Use with /task list, /task complete [id], /task update [id], /task show [id], /task validate. argument-hint: [list|list-all|complete|update|show|validate|new] [task-id] --- Task Management This skill provides task tracking across nested projects with strict formatting for reliable automation. **Arguments received:** $ARGUMENTS --- Slash Command Routing Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
task-management is best for be workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Task Management --- name: task description: Manage tasks across nested projects. Use with /task list, /task complete [id], /task update [id], /task show [id], /task validate. argument-hint: [list|list-all|complete|update|show|validate|new] [task-id] --- Task Management This skill provides task tracking across nested projects with strict formatting for reliable automation. **Arguments received:** $ARGUMENTS --- Slash Command Routing
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Vuldin
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/vuldin/task-management.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Vuldin
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
markdown
<!-- TASK:123 --> ### 123. Task Title | Field | Value | |-------|-------| | **id** | 123 | | **status** | in_progress | | **priority** | high | **Description** Task description here. <!-- END TASK:123 -->
markdown
| Field | Value | |-------|-------| | **id** | 123 | | **status** | pending | in_progress | blocked | complete | | **priority** | critical | high | medium | low | | **created** | 2026-02-08 |
markdown
**Description** Task description goes here. Can be multiple lines.
markdown
**Notes** Additional notes. **Files** - `path/to/file.rs` - `path/to/other.rs` **Depends On** - Task 45 - Task 67 **Acceptance Criteria** - [ ] Criterion one - [ ] Criterion two
markdown
## Quick Reference | ID | Title | Status | Priority | |----|-------|--------|----------| | 122 | Contact Import | ๐ก In Progress | ๐ High | | 123 | Profile Export | ๐ Pending | ๐ก Medium | *Auto-generated. Last updated: 2026-02-08T15:30:00Z*
markdown
<!-- TODO.md - Active Tasks for [Project] โ ๏ธ IMPORTANT: This file uses strict formatting. See: .claude/skills/task-management/SKILL.md Generated sections are marked - DO NOT EDIT MANUALLY. --> # [Project] Tasks *Active tasks only. See [COMPLETED.md](./COMPLETED.md) for history.* **Quick Links**: [Active Tasks](#quick-reference) | [Completed Tasks](./COMPLETED.md) --- ## Quick Reference <!-- QR-START (AUTO-GENERATED - DO NOT EDIT) --> | ID | Title | Status | Priority | |----|-------|--------|----------| <!-- QR-END --> --- ## Tasks <!-- TASKS-START --> <!-- Put new tasks here --> <!-- TASKS-END -->
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Task Management --- name: task description: Manage tasks across nested projects. Use with /task list, /task complete [id], /task update [id], /task show [id], /task validate. argument-hint: [list|list-all|complete|update|show|validate|new] [task-id] --- Task Management This skill provides task tracking across nested projects with strict formatting for reliable automation. **Arguments received:** $ARGUMENTS --- Slash Command Routing
This skill provides task tracking across nested projects with strict formatting for reliable automation.
Arguments received: $ARGUMENTS
Based on the argument, run the appropriate action:
| Command | Action |
|---------|--------|
| /task or /task list | Run scripts/list-tasks.sh and copy output into response |
| /task list-all | Run scripts/list-tasks.sh --include-completed and copy output into response |
| /task complete <id> | Run scripts/complete-task.sh <id> |
| /task update <id> [--status <v>] [--priority <v>] [--title <v>] | Run scripts/update-task.sh <id> [flags] |
| /task show <id> | Read the task from the appropriate TODO.md or COMPLETED.md |
| /task validate | Run scripts/validate-todos.py |
| /task new | Follow the "Creating a New Task" workflow below |
All script paths are relative to .claude/skills/task-management/.
โ NEVER during list commands:
Each project has two files:
| File | Purpose | Edit By |
|------|---------|---------|
| TODO.md | Active tasks only | Scripts + manual |
| COMPLETED.md | Completed tasks only | complete-task.sh script only |
Every task is wrapped in explicit markers:
<!-- TASK:123 -->
### 123. Task Title
| Field | Value |
|-------|-------|
| **id** | 123 |
| **status** | in_progress |
| **priority** | high |
**Description**
Task description here.
<!-- END TASK:123 -->
Rules:
<!-- TASK:{id} --><!-- END TASK:{id} -->All tasks MUST have this exact table format:
| Field | Value |
|-------|-------|
| **id** | 123 |
| **status** | pending | in_progress | blocked | complete |
| **priority** | critical | high | medium | low |
| **created** | 2026-02-08 |
Allowed Values (STRICT):
| Field | Allowed Values |
|-------|----------------|
| status | pending, in_progress, blocked, complete |
| priority | critical, high, medium, low |
NO synonyms, NO emojis in data values.
**Description**
Task description goes here. Can be multiple lines.
**Notes**
Additional notes.
**Files**
- `path/to/file.rs`
- `path/to/other.rs`
**Depends On**
- Task 45
- Task 67
**Acceptance Criteria**
- [ ] Criterion one
- [ ] Criterion two
The Quick Reference table is generated by scripts, never edited manually.
## Quick Reference
| ID | Title | Status | Priority |
|----|-------|--------|----------|
| 122 | Contact Import | ๐ก In Progress | ๐ High |
| 123 | Profile Export | ๐ Pending | ๐ก Medium |
*Auto-generated. Last updated: 2026-02-08T15:30:00Z*
Status Emojis (rendering only):
pending โ ๐in_progress โ ๐กblocked โ ๐ซcomplete โ โ
Priority Emojis (rendering only):
critical โ ๐ดhigh โ ๐ medium โ ๐กlow โ ๐ข<!--
TODO.md - Active Tasks for [Project]
โ ๏ธ IMPORTANT: This file uses strict formatting. See:
.claude/skills/task-management/SKILL.md
Generated sections are marked - DO NOT EDIT MANUALLY.
-->
# [Project] Tasks
*Active tasks only. See [COMPLETED.md](./COMPLETED.md) for history.*
**Quick Links**: [Active Tasks](#quick-reference) | [Completed Tasks](./COMPLETED.md)
---
## Quick Reference
<!-- QR-START (AUTO-GENERATED - DO NOT EDIT) -->
| ID | Title | Status | Priority |
|----|-------|--------|----------|
<!-- QR-END -->
---
## Tasks
<!-- TASKS-START -->
<!-- Put new tasks here -->
<!-- TASKS-END -->
<!--
COMPLETED.md - Completed Tasks for [Project]
โ ๏ธ IMPORTANT: This file is APPEND-ONLY at the top.
Newest completed tasks go in "## Current Month" section.
See SKILL.md for completion workflow.
-->
# Completed Tasks - [Project]
**Stats**: 47 total | [Current Year]: 12
---
## Current Month (2026-02)
<!-- New completed tasks go HERE (at the top) -->
---
## Previous Months
### 2026-01
<!-- Completed tasks from January -->
## 2025
### 2025-12
<!-- Completed tasks from December 2025 -->
| Command | Action |
|---------|--------|
| /task or /task list | Run scripts/list-tasks.sh |
| /task list-all | Run scripts/list-tasks.sh --include-completed |
| /task show 51 | Read task from appropriate TODO.md |
| /task complete 51 | Run scripts/complete-task.sh 51 |
| /task update 51 --status in_progress | Run scripts/update-task.sh 51 --status in_progress |
| /task validate | Run scripts/validate-todos.py |
| /task new | Create a new task using the workflow below |
Find the next available task ID (shown at the bottom of list output):
.claude/skills/task-management/scripts/list-tasks.sh
Determine the correct file:
cli/TODO.md, contracts/TODO.md, etc.TODO.mdAdd task with proper format:
<!-- TASK:126 -->
### 126. Task Title
| Field | Value |
|-------|-------|
| **id** | 126 |
| **status** | pending |
| **priority** | high |
| **created** | 2026-02-08 |
**Description**
Task description here.
<!-- END TASK:126 -->
Regenerate Quick Reference:
.claude/skills/task-management/scripts/regenerate-qr.sh cli/TODO.md
Validate:
.claude/skills/task-management/scripts/validate-todos.py
ALWAYS use the completion script - never manually move tasks:
.claude/skills/task-management/scripts/complete-task.sh 122
This script will:
completecompleted date fieldWhy use the script?
ALWAYS use the update script - never manually edit task metadata:
.claude/skills/task-management/scripts/update-task.sh 3 --status in_progress
.claude/skills/task-management/scripts/update-task.sh 7 --priority critical --title "Urgent fix"
This script will:
Note: To mark a task as complete, use complete-task.sh instead.
| File | What Goes Here | |------|---------------| | Root TODO.md | Cross-project tasks only (spans 2+ subprojects) | | cli/TODO.md | CLI-only tasks | | contracts/TODO.md | Contract-only tasks | | discovery/TODO.md | Discovery service tasks |
If a task is in the wrong file:
regenerate-qr.sh on both filesvalidate-todos.py to verifyThe validation script checks:
<!-- TASK:{id} --> has matching <!-- END TASK:{id} -->id, status, priority, descriptionstatus and priority use allowed values onlystatus: complete are in COMPLETED.mdRun validation:
.claude/skills/task-management/scripts/validate-todos.py
With verbose output:
.claude/skills/task-management/scripts/validate-todos.py --verbose
| Script | Purpose |
|--------|---------|
| list-tasks.sh | List all active tasks |
| list-tasks.sh --include-completed | List all tasks including completed |
| complete-task.sh <id> | Mark task complete and move to COMPLETED.md |
| update-task.sh <id> [--status <v>] [--priority <v>] [--title <v>] | Update task fields in TODO.md |
| validate-todos.py | Validate all TODO.md files |
| regenerate-qr.sh <file> | Regenerate Quick Reference for one file |
| regenerate-qr.sh --all | Regenerate all Quick References |
A <!-- TASK:{id} --> marker doesn't have a matching <!-- END TASK:{id} -->. Check the task formatting.
The metadata table is missing id, status, priority, or description. Add the missing field.
Status must be exactly: pending, in_progress, blocked, or complete. No spaces, no emojis, no variations.
The same ID exists in multiple files. Tasks must have unique IDs across all projects.
A task with status: complete is still in a TODO.md file. Run complete-task.sh to move it to COMPLETED.md.
project/
โโโ TODO.md # Cross-project tasks
โโโ COMPLETED.md # Cross-project completed tasks
โโโ cli/
โ โโโ TODO.md # CLI active tasks
โ โโโ COMPLETED.md # CLI completed tasks
โโโ contracts/
โ โโโ TODO.md # Contracts active tasks
โ โโโ COMPLETED.md # Contracts completed tasks
โโโ .claude/skills/task-management/
โโโ SKILL.md # This file
โโโ scripts/
โโโ list-tasks.sh
โโโ complete-task.sh
โโโ update-task.sh
โโโ validate-todos.py
โโโ regenerate-qr.sh
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/vuldin-task-management/snapshot"
curl -s "https://xpersona.co/api/v1/agents/vuldin-task-management/contract"
curl -s "https://xpersona.co/api/v1/agents/vuldin-task-management/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | ๐ Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/vuldin-task-management/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/vuldin-task-management/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/vuldin-task-management/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/vuldin-task-management/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/vuldin-task-management/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/vuldin-task-management/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T04:15:14.558Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:be|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Vuldin",
"href": "https://github.com/vuldin/task-management",
"sourceUrl": "https://github.com/vuldin/task-management",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T02:12:41.561Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/vuldin-task-management/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/vuldin-task-management/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T02:12:41.561Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/vuldin-task-management/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/vuldin-task-management/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to task-management and adjacent AI workflows.