/SKILL.md
Manage feature request intake, normalization, triage, queue operations, and API-only lifecycle workflows.
npx skillsauth add onurmatik/feature-request feature-requestInstall 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.
This file is the single skill registry for the repository. Each section is an actionable skill with a deterministic flow.
agent-onboardUser asks for agent-facing setup or onboarding changes.
backend, frontend, tooling, or manifest)../AGENTS.md../agents.json if present.feature-request-operatorUser asks an agent to read or mutate feature requests for a public board.
Operate on board data via API:
portfolio-triage: read-only queue snapshot across all projects owned by the authenticated user.project-triage: read-only queue snapshot for one owner_handle/project_slug.project-implementation: use one project's FeatureRequest issues as the source of truth for local repo implementation work.Bearer <token> flow.Authorization header.can_write=true).owner_handle (required for read/write paths under that board).project_slug.issue_type, title, description, priority.body.issue_type, status, priority, limit.POST /api/auth/agent-token/connectPOST /api/auth/agent-token/refreshGET /api/projectsGET /api/owners/{owner_handle}/projectsGET /api/owners/{owner_handle}/issuesGET /api/projects/{owner_handle}/{project_slug}/issuesGET /api/issues/{issue_id}POST /api/projects/{owner_handle}/{project_slug}/issuesPOST /api/issues/{issue_id}/commentsPATCH /api/issues/{issue_id}/comments/{comment_id}POST /api/issues/{issue_id}/upvote/toggleAuthorization: Bearer <token>.POST /api/auth/agent-token/connect or /refresh only for browser/session onboarding flows where no raw token has been provided.GET /api/projects, then issue lists for those projects.GET /api/projects/{owner_handle}/{project_slug}/issues directly with optional filters.{"body": "<text>"}.{"body": "<text>"}.upvoted + upvotes_count.owner_handle/project_slug; do not read or modify other projects.done automatically; reserve done/closed for merge or release confirmation.Return compact JSON:
{
"ok": true,
"action": "read_issues|create_issue|add_comment|toggle_upvote",
"request": {
"method": "POST",
"path": "/api/projects/{owner_handle}/{project_slug}/issues",
"status": 201
},
"resource": {
"owner_handle": "owner",
"project_slug": "project",
"issue_id": 123
},
"data": {},
"meta": {
"items_returned": 0,
"created_at": "2026-02-27T12:00:00Z"
}
}
For failures:
{
"ok": false,
"action": "add_comment",
"request": {...},
"error": {
"status_code": 400,
"message": "Message rejected by moderation"
},
"next_step": "Retry with cleaner content or ask user for a revised message."
}
401: refresh or request new credentials and retry.403:
can_write=true before retry.400: log payload validation/moderation failure and stop; do not retry silently.404: validate owner_handle, project_slug, or issue_id input.503: retry with backoff for transient moderation/provider failures.action explicitly asked.Queue Snapshot, Priority Decisions, Active Follow-ups, Risks and Blockers, and Next Checkpoint.owner_handle/project_slug, identify the next ready issue, and produce an implementation plan without editing code.owner_handle/project_slug, pick at most one ready issue, implement in the current local repo, run relevant tests, and comment back with results when write access is available.user-request-managerUser asks an agent to manage incoming requests as a queue (visibility, prioritization, ownership, follow-up, closure).
issue_id, owner_handle, project_slug, issue_type, title, description, priority, status.P0-P3.Queue Snapshot table:
issue_id | summary | priority | status | owner_handle/project_slug | next actionPriority DecisionsActive Follow-upsRisks and BlockersNext Checkpointwaiting, request only missing fields.development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.