Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

otta-cliotta CLI 安全

Agent Skill

otta-cli 用于辅助安全审计、权限检查和凭据风险排查,适合在 OpenClaw 中需要复核安全边界、认证流程或敏感配置时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

16,941

周安装

713

GitHub Stars

公开资料未说明

下载量

5,932
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install otta-cli

简介

用于自动化 otta.fi 工作流程,主要支持工作时间与缺勤记录管理。

  • 适用于远程办公场景下的工时追踪、请假申请与考勤同步。
  • 通过 authenticate 等命令完成身份验证与数据提交,需配合 API 密钥使用。
  • 涉及个人信息录入时,应确保使用环境可信且密钥保密。
  • 建议首次使用前在测试环境验证操作流程与权限范围。

SKILL.md

name
otta-cli
description
Use otta-cli to automate otta.fi workflows from terminal. This tool is usually used for tracking working time, absences, and sick leaves: authenticate, inspect config/cache, check account status, manage worktimes (list/add/update/delete), browse absences, fetch holidays, and generate combined/detailed calendar reports. Trigger this skill when a request needs CLI-first Otta operations, OTTA_CLI_* environment setup, machine-readable --format json output, or diagnosis of auth/config/API validation errors.

Otta CLI

Use this skill to execute Otta time-tracking tasks end-to-end with repeatable CLI commands.

Main repository: https://github.com/mekedron/otta-cli

Quick Start

  1. Use the otta binary directly.
  1. Verify command surface and storage paths.
otta --help
otta config path
otta config cache-path
  1. Authenticate and hydrate cache.
otta auth login --username "$OTTA_CLI_USERNAME" --password "$OTTA_CLI_PASSWORD" --format json
otta status --format json
  • status updates cached user metadata (for user and worktimegroup fallbacks used by worktimes/holidays/calendar commands).
  • For non-interactive automation, prefer --password-stdin or secret env handling to reduce shell history exposure.

Command Recipes

Use explicit dates/times in YYYY-MM-DD and HH:MM formats.

List worktimes:

otta worktimes list --date 2026-02-20 --format json

Add worktime:

otta worktimes add \
  --date 2026-02-20 \
  --start 09:00 \
  --end 17:00 \
  --pause 30 \
  --project <project-id> \
  --worktype <worktype-id> \
  --description "Example task description" \
  --format json
  • --user is optional if OTTA_CLI_USER_ID or cached user ID exists.

Update worktime:

otta worktimes update --id <worktime-id> --start 10:00 --end 18:00 --format json
  • Send at least one changed field with --id.

Delete worktime:

otta worktimes delete --id <worktime-id> --format json

Fetch holidays/workday calendar:

otta holidays \
  --from 2026-02-20 \
  --to 2026-02-29 \
  --worktimegroup <worktimegroup-id> \
  --format json
  • --worktimegroup is optional if OTTA_CLI_WORKTIMEGROUP_ID or cached value exists.

Browse absences:

otta absence browse \
  --from 2026-02-01 \
  --to 2026-02-28 \
  --format json

Fetch current cumulative saldo:

otta saldo --format json

Generate combined calendar overview:

otta calendar overview \
  --from 2026-02-01 \
  --to 2026-02-28 \
  --format json

Generate detailed calendar day-by-day report:

otta calendar detailed \
  --from 2026-02-01 \
  --to 2026-02-28 \
  --format json

Use alternate duration units when totals are minute-based:

otta calendar detailed --from 2026-02-01 --to 2026-02-28 --format json --duration-format hours
otta worktimes browse --from 2026-02-01 --to 2026-02-28 --format json --duration-format days
  • --duration-format values: minutes (default), hours, days, hhmm
  • day conversion is fixed at 1 day = 24h = 1440 minutes

Generate absence comment text:

otta absence comment \
  --type sick \
  --from 2026-02-20 \
  --to 2026-02-20 \
  --details "Flu symptoms" \
  --format json

Environment Variables

Use these variables when running in CI/non-interactive environments:

  • OTTA_CLI_CONFIG_PATH
  • OTTA_CLI_CACHE_PATH
  • OTTA_CLI_API_BASE_URL
  • OTTA_CLI_CLIENT_ID
  • OTTA_CLI_USERNAME
  • OTTA_CLI_PASSWORD
  • OTTA_CLI_ACCESS_TOKEN
  • OTTA_CLI_TOKEN_TYPE
  • OTTA_CLI_REFRESH_TOKEN
  • OTTA_CLI_TOKEN_SCOPE
  • OTTA_CLI_USER_ID
  • OTTA_CLI_WORKTIMEGROUP_ID

Agent Operating Rules

  1. Prefer --format json for all data-producing commands and parse response fields instead of scraping text output.
  2. worktimes list/browse/report are worktime-only and never include absences; do not infer absences from empty worktime rows.
  3. For user schedule checks/log interpretation, prefer calendar detailed --format json first; use calendar overview as lighter fallback.
  4. Use --duration-format when users request non-minute output; keep raw minute values for auditability.
  5. Run status --format json before operations that rely on cached user/worktimegroup metadata.
  6. Validate dates/times before command execution (YYYY-MM-DD, HH:MM).
  7. Run worktimes list before update or delete when IDs are not explicitly known.
  8. Return exact command, exit code, and concise stderr message when failures happen.
  9. Never print raw credentials or tokens in summaries.

Failure Recovery

  • no access token configured (run \otta auth login\)

- Run auth login, then rerun status.

  • username is required (use --username)

- Pass --username or set OTTA_CLI_USERNAME.

  • --worktimegroup is required (...)

- Pass --worktimegroup, set OTTA_CLI_WORKTIMEGROUP_ID, or run status to refresh cache.

  • --date must be YYYY-MM-DD, --start must be HH:MM, --to must be greater than or equal to --from

- Correct input format/order, rerun command.

  • directory ... is contained in a module that is not one of the workspace modules listed in go.work

- Build/run with GOWORK=off in this repository context.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.35%
按下载量换算5,004

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills