技能详情(站内镜像,无评论)
作者:antonia huang @antonia-sz
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 188 · 2 current installs · 2 all-time installs
⭐ 0
安装量(当前) 2
🛡 VirusTotal :可疑 · OpenClaw :可疑
Package:antonia-sz/project-evaluator
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :可疑
OpenClaw 评估
The skill mostly does what it says (calls an LLM to produce a project evaluation), but the package metadata omits the API-key requirement and the script will send your API key and prompts to an external LLM endpoint (defaulting to api.deepseek.com), which is surprising and potentially risky.
目的
The code and SKILL.md align with the stated purpose: they call an LLM to generate an evaluation report. However, the skill metadata declares no required environment variables or primary credential while both the README and the script expect an API key (OPENAI_API_KEY or DEEPSEEK_API_KEY). That omission is an incoherence that can mislead users about what secrets are needed.
说明范围
SKILL.md instructs running the included script; the script only takes the idea/context and writes an output file. It does not read unrelated local files. But the script reads environment variables for API credentials and an API base URL — the SKILL.md does not explicitly warn that you'll need to provide an API key or that the key will be sent to the configured API_BASE.
安装机制
No install spec and only a small Python script are included. There is no network installer or archive download. Risk from installation is low.
证书
The script requires an LLM API key (OPENAI_API_KEY or DEEPSEEK_API_KEY) and will send it as a Bearer token to API_BASE. The skill metadata does not declare this required credential (primaryEnv none). Additionally, the default API_BASE is https://api.deepseek.com — an unfamiliar third-party domain. If a user sets OPENAI_API_KEY expecting requests to OpenAI, that key would be sent to deepseek.com unless API_BASE is changed, which could leak cred…
持久
The skill has no 'always' privilege and does not request persistent system-wide configuration. It does not modify other skills or system settings.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「AI 项目评估助手」。简介:描述一个项目想法,AI 从市场/技术/商业/风险四个维度系统评估, 输出评估报告、竞品速查、MVP建议,帮你决策「值不值得做」。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/antonia-sz/project-evaluator/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: project-evaluator
displayName: AI 项目评估助手
version: 1.0.0
description: >
描述一个项目想法,AI 从市场/技术/商业/风险四个维度系统评估,
输出评估报告、竞品速查、MVP建议,帮你决策「值不值得做」。
author: antonia-sz
tags: [product, evaluation, startup, pm, ai, business]
---
# AI 项目评估助手 🔍
## 你能做什么
描述你的项目想法(一句话到几段话都行),我从四个维度帮你做系统评估:
📊 **市场维度** — 需求真实吗?竞品有哪些?差异化在哪?
🔧 **技术维度** — 技术可行吗?主要挑战是什么?推荐技术栈?
💰 **商业维度** — 怎么挣钱?怎么获客?变现难度如何?
⚠️ **风险维度** — 主要风险点?平台依赖?法规合规?
---
## 使用方式
### 快速评估
```
帮我评估这个项目:做一个帮用户批量管理微信好友的工具,可以按标签分组、定时发朋友圈、分析互动数据
```
### 详细评估(提供更多信息)
```
项目名称:xxx
目标用户:xxx
核心功能:xxx
资源约束:1个人,业余时间,3个月
请帮我做项目评估
```
---
## 输出格式
```markdown
## 📊 综合评分
| 维度 | 评分 | 简评 |
|------|------|------|
| 市场需求 | 8/10 | 需求真实,竞品多 |
| 技术可行性 | 9/10 | 实现难度低 |
| 商业价值 | 6/10 | 变现路径不清晰 |
| 风险程度 | 4/10 | 平台风险高 |
| **综合** | **6.8/10** | |
## 🏆 市场维度
...
## 🔧 技术维度
...
## 💰 商业维度
...
## ⚠️ 风险维度
...
## 🚀 竞品速查
1. 竞品A — 主要功能、优缺点
2. 竞品B — ...
## 💡 MVP 建议
...
## 📋 结论
值得做 / 谨慎 / 不建议
```
---
## 工具调用
```python
exec: python3 SKILL_DIR/scripts/evaluate_project.py
--idea "项目描述"
--output /tmp/eval_report.md
```