Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

plutioplutio 效率

Agent Skill

plutio 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,161

周安装

494

GitHub Stars

公开资料未说明

下载量

4,031
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:plutio(plutio 效率)
来源仓库:https://github.com/grewingm/plutio
安装命令:
openclaw skills install plutio
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install plutio

简介

管理 Plutio 平台上的项目与任务分配,提升协作效率。

  • 适用于敏捷开发、远程团队或个人待办事项组织。
  • 支持创建、更新、关闭任务及进度查询与提醒。plutio 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 需绑定 Plutio API 密钥并配置读写权限。
  • 建议定期同步状态,避免任务遗漏或重复冲突。

SKILL.md

name
plutio
description
Manage Plutio projects and tasks. Use when you need to create, update, close, or query tasks and projects in Plutio (task/project management platform). Supports listing projects, viewing tasks, creating tasks with full field support, updating task details (status, description, assignee, priority, dates), and closing tasks.

Plutio Skill

Integrate with Plutio for project and task management via REST API.

Platforms: Works with Linux/macOS (bash) and Windows (PowerShell 7). See references/powershell-workflows.md for PowerShell-specific examples.

Setup

Complete setup guide: See references/setup-guide.md for:

  • How to get API credentials from Plutio
  • Configuring via OpenClaw chat (recommended)
  • Command-line setup for Linux, macOS, and Windows
  • Secure credential storage (Bitwarden, environment variables)
  • Troubleshooting common issues

Quick summary:

  1. Get credentials from Plutio (Settings > API > Create Application)
  2. Ask OpenClaw to configure (easiest): _"Setup Plutio with Client ID: XXX and Secret: YYY"_
  3. Or set environment variables:

- Linux/macOS: export PLUTIO_APP_KEY="..." - Windows PowerShell: $env:PLUTIO_APP_KEY = "..."

  1. Python 3 must be installed

The skill caches access tokens locally (valid for ~1 hour), then automatically refreshes when needed.

Quick Start

List all projects

python3 $env:USERPROFILE\.openclaw\workspace\skills\plutio\scripts\plutio-cli.py `
  --subdomain grewing `
  --app-key YOUR_APP_KEY `
  --secret YOUR_SECRET `
  list-projects

List tasks in a project

python3 $env:USERPROFILE\.openclaw\workspace\skills\plutio\scripts\plutio-cli.py `
  --subdomain grewing `
  --app-key YOUR_APP_KEY `
  --secret YOUR_SECRET `
  list-tasks --project-id PROJECT_ID

Create a task

python3 $env:USERPROFILE\.openclaw\workspace\skills\plutio\scripts\plutio-cli.py `
  --subdomain grewing `
  --app-key YOUR_APP_KEY `
  --secret YOUR_SECRET `
  create-task `
    --title "My Task Title" `
    --board-id BOARD_ID `
    --group-id GROUP_ID

Note: To make tasks appear in the Plutio UI, you must provide both --board-id (Task List board ID) and --group-id (column/group ID like Backlog, In Progress, Done).

List people (team members)

python3 $env:USERPROFILE\.openclaw\workspace\skills\plutio\scripts\plutio-cli.py `
  --subdomain grewing `
  --app-key YOUR_APP_KEY `
  --secret YOUR_SECRET `
  list-people

Common Operations

Create a task with all fields

python3 $env:USERPROFILE\.openclaw\workspace\skills\plutio\scripts\plutio-cli.py create-task `
  --subdomain grewing `
  --project-id PROJECT_ID `
  --title "Task Title" `
  --description "Detailed description" `
  --priority "high" `
  --status "open" `
  --assignee-id PERSON_ID `
  --due-date "2026-03-15" `
  --app-key YOUR_APP_KEY `
  --secret YOUR_SECRET

Supported fields when creating/updating tasks:

  • title - Task name
  • description - Task details
  • status - open, in_progress, closed, or custom status name
  • priority - low, medium, high, urgent
  • assignee-id - Person ID to assign task to
  • due-date - ISO format (YYYY-MM-DD)
  • label-ids - Comma-separated label IDs
  • custom-fields - JSON string with custom field values

Close a task

python3 $env:USERPROFILE\.openclaw\workspace\skills\plutio\scripts\plutio-cli.py update-task `
  --subdomain grewing `
  --task-id TASK_ID `
  --status "closed" `
  --app-key YOUR_APP_KEY `
  --secret YOUR_SECRET

API Reference

See references/api-endpoints.md for:

  • Full endpoint documentation
  • Response schemas
  • Field descriptions
  • Rate limits and pagination

How It Works

  1. Authentication: Exchanges app key + secret for temporary access token
  2. API Calls: Uses token for authenticated requests to Plutio REST API
  3. Token Caching: Stores token locally for faster subsequent calls
  4. Error Handling: Reports API errors clearly with troubleshooting hints

Important Notes on Plutio v1.11 API

Supported Operations:

  • ✅ List projects
  • ✅ List tasks (all tasks in workspace or by board)
  • ✅ Create tasks (with board and group IDs)
  • ✅ List people/team members

Key Requirements for v1.11:

  • Tasks need both taskBoardId AND taskGroupId to appear in the Plutio UI
  • Tasks without these parameters are created but remain hidden from the interface
  • Get your board and group IDs from the Plutio project's Task List

Known Limitations (v1.11):

  • projectId parameter doesn't work - use taskBoardId instead
  • Task creation supports: title, board ID, group ID only
  • Other fields (status, priority, description) are not supported in the create endpoint
  • Task updates via API have permission restrictions (use Plutio UI)
  • To add details to tasks, edit them directly in Plutio UI
  • Contact Plutio support for advanced field support

Troubleshooting

"Unauthorized" error:

  • Verify Client ID and Secret are copied exactly from Plutio Settings > API manager
  • Check that the API application is created and visible in your API manager
  • Ensure you're using v1.11 or later

"Project not found": Verify project ID with list-projects

"Rate limited": Plutio has 1000 calls/hour limit. Wait before retrying.

Tasks not appearing in results: Check the Plutio UI directly - the API may have caching delays.

Integration Examples

For PowerShell Users

Complete PowerShell 7 workflows and examples: See references/powershell-workflows.md for:

  • Daily task briefings
  • Batch task operations
  • Integration with Windows Task Scheduler
  • Error handling patterns

For OpenClaw Integration

In OpenClaw, you could create a script that:

  1. Checks calendar for upcoming deadline
  2. Queries Plutio for tasks due that day
  3. Sends reminder via Matrix

See the scripts/ folder and references/ for implementation examples.


*Last updated: 2026-03-01*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.26%
按下载量换算3,840

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills