openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > TribuRuby Training Agent

Helps users check in rituals, track streaks, and view tribe activity on TribuRuby.

开发与 DevOps

作者:Emil-AAB @a8ns

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.1

统计:⭐ 1 · 171 · 0 current installs · 0 all-time installs

1

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:a8ns/triburuby

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's instructions and required API key are coherent with a TribuRuby integration, but there is a metadata mismatch about required env vars that you should verify before installing.

目的

The skill name/description describe checking in rituals, tracking streaks, and viewing tribe activity; the SKILL.md contains concrete API endpoints and an Authorization: Bearer header — this aligns with the stated purpose. However, the registry metadata earlier reported no required env vars or primary credential while SKILL.md declares TRIBURUBY_API_KEY (primaryEnv). That metadata mismatch is an inconsistency that should be resolved.

说明范围

The runtime instructions are narrowly scoped to calling TribuRuby agent endpoints (authentication check, discover tribes, context, activity, check-in). They do not instruct reading unrelated files, system paths, or other environment variables.

安装机制

This is an instruction-only skill with no install spec or code files, so nothing will be written to disk by an installer. That is the lowest-risk install pattern.

证书

SKILL.md requires a single secret TRIBURUBY_API_KEY for API calls which is proportionate for a third-party API integration. The concern is the registry metadata did not list this required env var or primary credential — verify the registry entry and ensure the key requested is the intended agent API key with least privilege.

持久

The skill does not request always: true and is user-invocable; it does not request elevated persistence or modification of other skills. Autonomous invocation is allowed (platform default) but not combined with other red flags.

综合结论

This skill appears to do what it claims: it will make HTTP requests to https://triburuby.app/api/agent and send the TRIBURUBY_API_KEY in an Authorization: Bearer header. Before installing: (1) confirm the registry entry and SKILL.md agree about required env vars (the manifest you were shown omitted the API key), (2) create an agent-scoped API key in TribuRuby with minimal permissions and do not reuse other secrets, (3) verify you trust the hom…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「TribuRuby Training Agent」。简介:Helps users check in rituals, track streaks, and view tribe activity on TribuRu…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/a8ns/triburuby/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
description: Helps users check in rituals, track streaks, and view tribe activity on TribuRuby.
display_name: TribuRuby Training Agent
env:
- description: TribuRuby Agent API key
  name: TRIBURUBY_API_KEY
  required: true
  secret: true
homepage: "https://triburuby.app"
name: triburuby
primaryEnv: TRIBURUBY_API_KEY
tags:
- fitness
- habits
- training
- community
version: 1.0.1
---

# TribuRuby Skill

This skill connects to the TribuRuby platform and helps users:

-   Check in daily rituals
-   Track training streaks
-   View tribe activity
-   Monitor progress in training protocols

Website: https://triburuby.app

------------------------------------------------------------------------

# Authentication

All API calls require:

Authorization: Bearer ${TRIBURUBY_API_KEY}

The API key must be created in TribuRuby under:

Settings → Agent API Keys

------------------------------------------------------------------------

# API Base

https://triburuby.app/api/agent

------------------------------------------------------------------------

# Initialization

Always verify authentication first:

GET /api/agent

If the response contains:

{"error":"Unauthorized"}

tell the user their key is invalid or expired.

------------------------------------------------------------------------

# Available Actions

## Discover Tribes

GET /api/agent?action=my-tribes

Returns all tribes and protocol IDs.

Use this before making tribe-specific calls.

------------------------------------------------------------------------

## Get Training Context

GET
/api/agent?action=context&tribeId=`<id>`{=html}&protocolId=`<id>`{=html}

Returns:

-   ritual list
-   completion status
-   streak count
-   quantities and units

------------------------------------------------------------------------

## Get Tribe Activity

GET
/api/agent?action=tribe-activity&tribeId=`<id>`{=html}&protocolId=`<id>`{=html}

Optional:

&date=YYYY-MM-DD

Shows:

-   tribe members
-   weekly activity
-   current streaks
-   today's check-ins

------------------------------------------------------------------------

## Check In Ritual

POST /api/agent

Body:

{ "action": "check-in", "ritualId": "`<id>`{=html}", "protocolId":
"`<id>`{=html}", "quantity": 45, "date": "YYYY-MM-DD" }

------------------------------------------------------------------------

# Workflow

When helping a user:

1.  Fetch their tribes with `my-tribes`
2.  Determine the relevant `tribeId` and `protocolId`
3.  Retrieve context
4.  Show tribe activity
5.  Offer to check in incomplete rituals

------------------------------------------------------------------------

# Response Style

Keep responses:

-   concise
-   motivating
-   focused on streaks and consistency

Athletes care most about streaks, progress, and accountability.