← 返回 Skills 市场
574
总下载
0
收藏
3
当前安装
33
版本数
在 OpenClaw 中安装
/install openclaw-newbie-faq
功能描述
为刚接触 OpenCLAW 的新手提供完整指南,包括大模型常识、常见问题解答、命令大全和最佳实践
安全使用建议
This skill appears to do what it says: serve a local static FAQ on a port. Before installing, consider: 1) network exposure — server.js calls server.listen(PORT) without binding to 127.0.0.1, so the service may accept remote connections if your host/network allows it; if you want strictly local access, modify server.listen to bind to '127.0.0.1' or use a firewall. 2) privacy — the frontend loads external resources (FontAwesome CDN, QR API, and image URLs hosted on GitHub); opening the page will cause your browser to contact those hosts (IP/referrer visible). If you need fully offline/local docs, remove external references. 3) persistence/logs — the provided entrypoint may run the server with nohup and write /tmp/newbie-faq.log; check and manage that file and background process if desired. 4) provenance — the SKILL.md and README reference a GitHub repo; if provenance matters, review the repo and audit the source locally before running. Otherwise the skill is internally coherent and not requesting excessive privileges or secrets.
功能分析
Type: OpenClaw Skill
Name: openclaw-newbie-faq
Version: 1.0.44
The skill bundle is a legitimate documentation and FAQ tool for OpenClaw users. It functions by launching a local Node.js web server on port 34567 (via index.js and server.js) to serve a static educational interface. The code includes basic security practices, such as path traversal checks in server.js, and shows no signs of data exfiltration, unauthorized remote execution, or malicious prompt injection.
能力评估
Purpose & Capability
The name/description (OpenClaw newbie FAQ) align with the included files: a Node.js static web server (server.js) and frontend assets under web/. The index.js and skill.json both start that server, which is coherent with a local help/FAQ web UI.
Instruction Scope
Runtime instructions tell the agent/user to start a local web service and point to ~/.openclaw/workspace/skills/openclaw-newbie-faq; the code implements that. Minor mismatches: SKILL.md/README claim the page will 'automatically open in browser' though the code does not open a browser. The server serves only static files and does not collect credentials, but the web UI references external CDNs/APIs (FontAwesome CDN and an external QR image service) which will cause the user's browser to contact external endpoints when the page is viewed.
Install Mechanism
No install script downloads arbitrary code at install time; package.json has no external dependencies. The skill bundle contains the server and frontend source. No suspicious remote install URLs or archive extraction were used.
Credentials
The skill requires no environment variables or credentials. It optionally reads OPENCLAW_SKILL_PORT and uses the user's home directory to locate the skill files — both are reasonable for a local web service.
Persistence & Privilege
always:false and user-invocable (normal). The skill may be started as a background process (skill.json's shell entry uses nohup and redirects logs to /tmp/newbie-faq.log) which makes it persist across sessions; this is within scope but worth noting because it creates a long-running process and a log file under /tmp.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install openclaw-newbie-faq - 安装完成后,直接呼叫该 Skill 的名称或使用
/openclaw-newbie-faq触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.44
- 新增 _meta.json 文件,完善元数据信息
- 更新 server.js 和 skill.json 文件,提升功能或修复问题
- 版本升级至 1.0.44
v1.0.43
- 更新版本号至 1.0.43
- 进行了依赖、元数据和相关文件的常规维护与版本同步
- 无新增功能或重大变更
v1.0.42
openclaw-newbie-faq v1.0.42
- 新增文件 介绍.html,增加对新用户的介绍内容。
- 多处文档(README、SKILL.md)和元数据更新,提升说明准确性。
- 保持技能功能和使用流程不变,优化项目结构。
v1.0.41
- Updated version to 1.0.41.
- Rearranged and simplified sections in the documentation for improved clarity.
- Moved "功能截图" (feature screenshots) section above the intro and enhanced documentation structure.
- No functional code changes described; updates focus on documentation clarity and ordering.
v1.0.40
- Updated to version 1.0.40
- Modified skill.json and web/index.html files
- No changes in documentation or feature set detected
v1.0.39
- No user-facing changes in this version.
- Updated skill metadata files only; core functionality unchanged.
v1.0.38
- 更新了 web/app.js 和 web/index.html 以改进 Web 服务界面或功能。
- skill.json 进行了微调,与最新代码保持同步。
- 版本号由 1.0.28 升级至 1.0.38。
- 文档(SKILL.md)未做改动。
v1.0.37
- 更新前端页面样式和内容,提升可读性与视觉效果
- 优化 web/index.html 结构,改善新手帮助信息展示
- 微调 web/styles.css,增强界面美观和用户体验
v1.0.36
- 更新 web/index.html,改进页面内容展示。
- 优化 web/styles.css,提升页面样式美观性和易用性。
- 更新 skill.json 文件,确保 skill 配置与最新前端保持一致。
v1.0.35
- Improved web interface layout and appearance in `web/index.html` and `web/styles.css`.
- Updated metadata and configuration in `skill.json`.
- Minor refinements for a better user experience.
v1.0.34
- Updated to version 1.0.34.
- Modified skill.json and web/index.html files.
- No changes to function or documentation in SKILL.md.
v1.0.33
- Improved user interface in the web client with updates to index.html and styles.css.
- Enhanced visual style and layout for a better browsing experience.
- No changes to main skill features or documentation content.
v1.0.32
- Updated version in skill.json from 1.0.28 to 1.0.32.
- No functional or content changes to documentation or app logic.
v1.0.31
- Updated web interface files (web/index.html) with refinements or new content.
- Bumped skill version metadata to 1.0.31 for release tracking.
- No changes to documentation or feature set in SKILL.md.
v1.0.30
- Updated skill version to 1.0.30 in skill.json.
- No changes to documentation or functionality.
v1.0.29
openclaw-newbie-faq v1.0.29
- Updated core files: index.js, package.json, server.js, and skill.json.
- General version increase with maintenance or internal changes.
- No user-facing feature changes or major documentation updates.
v1.0.28
- 增加了“优化建议”板块,提供性能优化和最佳配置方案
- 更新了使用建议,指引用户参考“优化建议”提升性能
- 修改并完善了反馈与支持部分,现在包括直接链接到 GitHub
- 移除 Telegram 配置详细教程,调整文档结构
- 修正和完善说明,使内容更加简洁明了
v1.0.26
- 服务启动说明优化:安装后不会自动启动 34567 端口,需要与 openclaw 聊天发送“新手帮助”来启动 Web 服务。
- 其他文档表述更清晰,指引启动方式更加简洁明了。
- 版本号升级至 1.0.26。
v1.0.25
- 更新版本号至 1.0.25
- 简化“功能截图”部分,删除了单独的小节标题,仅保留图片展示
- 其余内容与目录结构保持一致,无新增或删除功能
- 仅为描述和文档微调,无核心功能变动
v1.0.24
- 功能截图中的本地图像链接替换为 GitHub 远程图片链接,提高图片加载兼容性。
- 其余功能和使用说明保持不变。
元数据
常见问题
Openclaw Newbie Faq 是什么?
为刚接触 OpenCLAW 的新手提供完整指南,包括大模型常识、常见问题解答、命令大全和最佳实践. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 574 次。
如何安装 Openclaw Newbie Faq?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install openclaw-newbie-faq」即可一键安装,无需额外配置。
Openclaw Newbie Faq 是免费的吗?
是的,Openclaw Newbie Faq 完全免费(开源免费),可自由下载、安装和使用。
Openclaw Newbie Faq 支持哪些平台?
Openclaw Newbie Faq 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Openclaw Newbie Faq?
由 kunyashaw(@kunyashaw)开发并维护,当前版本 v1.0.44。
推荐 Skills