skills/quadrants/SKILL.md
Manage Quadrants tasks and projects via natural language. Use when the user wants to create, view, complete, or organize tasks on the Eisenhower Matrix. Supports listing projects, adding tasks (single or bulk), viewing priority tasks, completing tasks, and getting project overviews. Triggers on mentions of "quadrants", "tasks", "to-do", "eisenhower", "priority matrix", or task management requests.
npx skillsauth add 1012Lonin/Yushufang quadrantsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage tasks on the Quadrants Eisenhower Matrix (quadrants.ch) via OpenClaw.
All operations go through POST https://quadrants.ch/api/service with header X-API-Key.
Credentials should be configured via environment variables or openclaw.json:
QUADRANTS_API_KEY — Service API keyYOUR_PROJECT_IDcurl -sL -X POST "https://quadrants.ch/api/service" \
-H "Content-Type: application/json" \
-H "X-API-Key: $QUADRANTS_API_KEY" \
-d '{"action":"<ACTION>", ...params}'
| Action | Required params | Description |
|--------|----------------|-------------|
| projects | — | List all projects with task counts |
| tasks | projectId | List active tasks (sorted by priority) |
| priority | — | Top priority tasks across all projects |
| quadrant | projectId, quadrant (Q1/Q2/Q3/Q4) | Filter tasks by quadrant |
| search | query | Search tasks by description |
| create | projectId, description, urgency?, importance? | Create one task |
| bulk-create | projectId, tasks[] | Create multiple tasks |
| complete | taskId | Archive/complete a task |
| update | taskId, updates{} | Update task fields |
| delete | taskId | Permanently delete a task |
| overview | projectId | Project stats + quadrant distribution |
| stats | — | Global stats across all projects |
| Quadrant | Urgency | Importance | Meaning | |----------|---------|------------|---------| | Q1 | >50 | >50 | 🔴 Do First — urgent + important | | Q2 | ≤50 | >50 | 🟡 Schedule — important, not urgent | | Q3 | >50 | ≤50 | 🟠 Delegate — urgent, not important | | Q4 | ≤50 | ≤50 | ⚪ Eliminate — neither |
| User says | Action | Params |
|-----------|--------|--------|
| "加个任务:修bug" | create | description="修bug", urgency=80, importance=70 |
| "今天做什么" / "priority" | priority | — |
| "完成了 #412" | complete | taskId=412 |
| "项目概览" | overview | projectId=default |
| "Q1任务" / "紧急重要" | quadrant | quadrant=Q1 |
| "搜索 登录" | search | query="登录" |
| "看看项目" | projects | — |
| "整体情况" | stats | — |
When user doesn't specify values, infer from context:
{"action":"bulk-create","projectId":"proj_xxx","tasks":[
{"description":"修复登录bug","urgency":90,"importance":85},
{"description":"更新文档","urgency":30,"importance":70},
{"description":"优化首页加载速度","urgency":60,"importance":75}
]}
development
Get current weather and forecasts (no API key required).
tools
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.
development
OpenViking 集成 — 浏览器自动化与 Web 搜索工具
development
小说架构设计 - 当用户需要设计小说大纲、人物档案、世界观、伏笔台账时触发。关键词:大纲、世界观、人物设定、架构设计、故事规划。