Manage tasks and projects via Locu's Public API.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill locu --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Locu?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-locu)More formats (shields.io, HTML) on the badges page.
---
name: locu
description: Manage tasks and projects via Locu's Public API.
metadata:
{
"openclaw":
{
"emoji": "🎯",
"requires": { "env": ["LOCU_API_TOKEN"] },
"primaryEnv": "LOCU_API_TOKEN",
},
}
---
# Locu Skill
Use the Locu Public API to interact with your workspace.
## Authentication
- `LOCU_API_TOKEN`: Your Personal Access Token (PAT).
## Commands
### User Info
- Get my info: `curl -X GET "https://api.locu.app/api/v1/me" -H "Authorization: Bearer $LOCU_API_TOKEN"`
### Tasks
- List tasks: `curl -X GET "https://api.locu.app/api/v1/tasks" -H "Authorization: Bearer $LOCU_API_TOKEN"`
### Projects
- List projects: `curl -X GET "https://api.locu.app/api/v1/projects" -H "Authorization: Bearer $LOCU_API_TOKEN"`
## Usage Notes
Always parse the JSON output to extract details about tasks (id, name, done status, type). Locu tasks can be native or integrated from Linear/Jira.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Java Spring Boot 服务中关于身份验证/授权、验证、CSRF、密钥、标头、速率限制和依赖安全的 Spring Security 最佳实践。