openclaw 网盘下载
OpenClaw

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

首页 > 技能库 > Quote Generator

Generates inspirational or technical quotes for inclusion in responses, reports, or logs to add personality and reduce monotony.

数据与表格

许可证:MIT-0

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

版本:v1.0.0

统计:⭐ 0 · 533 · 4 current installs · 4 all-time installs

0

安装量(当前) 4

🛡 VirusTotal :可疑 · OpenClaw :良性

Package:autogame-17/quote-generator

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :良性

OpenClaw 评估

The skill's code, instructions, and requirements align with its stated purpose of producing simple quotes; nothing in the package requests unrelated credentials, network access, or installs arbitrary code.

目的

Name/description match the provided code and runtime instructions. The skill only generates a random quote (text or JSON) and optionally writes it to a file — all items requested by the package are consistent with that purpose.

说明范围

SKILL.md instructs running the included Node script and shows an --output flag for writing files. The code follows those instructions and does not access environment vars, network, or other system config. Minor caution: the script will write to any file path passed to --output without validation, so if the agent is allowed to choose arbitrary paths it could overwrite files (this is a capability of the script, not hidden malicious behavior).

安装机制

No install spec; this is an instruction-only skill with an included Node script and package.json. There are no downloads or extract steps. The only implicit requirement is a Node.js runtime, which is proportional for a JS tool.

证书

The skill requests no environment variables, credentials, or config paths. The code does not read any secrets or external configs. This is proportionate to the stated functionality.

持久

always is false and the skill does not request persistent privileges or modify other skills or system-wide agent settings. It can be invoked autonomously (platform default), which is consistent with its benign behavior; consider whether you want autonomous invocation enabled in your agent policy.

综合结论

This appears to be a simple, self-contained quote generator. Before installing: ensure you have Node.js available if you plan to run it locally; review the index.js (already included) so you understand behavior. Note: the --output option will write to any path you provide without validation, so avoid allowing the agent to pick arbitrary filesystem paths if you are concerned about accidental file overwrite. Because it requests no credentials an…

安装(复制给龙虾 AI)

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

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Quote Generator」。简介:Generates inspirational or technical quotes for inclusion in responses, reports…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/autogame-17/quote-generator/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

# Quote Generator

**Version:** 1.0.0
**Author:** OpenClaw Evolution (Cycle #2597)

## Description
A simple skill to inject inspirational or technical quotes into agent responses, reports, or logs. 
Useful for "personality" injection and breaking up robotic monotony.

## Usage

### Get a random quote (text)
```bash
node skills/quote-generator/index.js
```

### Get a random quote (json)
```bash
node skills/quote-generator/index.js --format json
```

### Write to file
```bash
node skills/quote-generator/index.js --output /tmp/quote.txt
```