Overview
- Skill Key
- fengye607/cyber-luban-diary
- Author
- fengye607
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/fengye607/cyber-luban-diary
- Latest Commit SHA
- 8327ef750d25d6c92421a825229f460e94f4161e
AI diary service - push diary entries, query diaries, get AI analysis and cover images via HTTP API.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 赛博鲁班日记 技能。 若已安装,则直接安装 赛博鲁班日记 技能。
# 赛博鲁班日记
An AI-powered diary service. Push diary entries, retrieve them by date, get AI-generated analysis (feedback + keywords), and fetch cover images.
## Setup
1. Click the link below to authorize with Feishu and get your API token (long-lived, no expiration):
https://image.yezishop.vip/api/openclaw/auth-redirect
2. After Feishu login, copy the token displayed on the page.
3. Set the token as an environment variable:
```bash
export AI_DIARY_TOKEN="your_token_here"
```
## Usage
### Push a diary entry
When the user wants to save or push a diary entry for a specific date:
```bash
curl -s -X POST "https://image.yezishop.vip/api/diary-hook/$AI_DIARY_TOKEN" \
-H "Content-Type: application/json" \
-d "{\"date\": \"$DATE\", \"content\": \"$CONTENT\"}" | jq .
```
- `date` must be in `YYYY-MM-DD` format
- `content` is the diary text
### Get diary by date
When the user asks about a specific date's diary:
```bash
curl -s "https://image.yezishop.vip/api/diary-hook/$AI_DIARY_TOKEN/diaries?date=$DATE" | jq .
```
### List recent diaries
When the user wants to see recent diary entries:
```bash
curl -s "https://image.yezishop.vip/api/diary-hook/$AI_DIARY_TOKEN/diaries?limit=$LIMIT&offset=$OFFSET" | jq .
```
- `limit` defaults to 20, `offset` defaults to 0
### Get a single diary by ID
```bash
curl -s "https://image.yezishop.vip/api/diary-hook/$AI_DIARY_TOKEN/diaries/$DIARY_ID" | jq .
```
### Analyze a diary (AI feedback + keywords)
When the user wants AI analysis of a diary entry. Returns cached result if analysis already exists:
```bash
curl -s -X POST "https://image.yezishop.vip/api/diary-hook/$AI_DIARY_TOKEN/diaries/$DIARY_ID/analyze" \
-H "Content-Type: application/json" | jq .
```
Response includes `feedback` (text review) and `keywords` (3 key terms).
### Get diary cover image
```bash
curl -s "https://image.yezishop.vip/api/diary-hook/$AI_DIARY_TOKEN/diaries/$DIARY_ID/image" | jq .
```
Returns `image` field with the image URL, or `nu...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.