Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

opengemini-saas-builderopengemini saas 构建器

Agent Skill

opengemini-saas-builder 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,976

周安装

124

GitHub Stars

公开资料未说明

下载量

992
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:opengemini-saas-builder(opengemini saas 构建器)
来源仓库:https://github.com/hiromps/opengemini-saas-builder
安装命令:
openclaw skills install opengemini-saas-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install opengemini-saas-builder

简介

opengemini-saas-builder 使用 Gemini CLI 构建端到端 SaaS 项目。

  • 适合在 OpenClaw 中需要根据关键词或场景集思广益时使用。
  • 以 OpenClaw 为协调器,Gemini 为副驾驶,支持全流程开发引导。
  • 安装前建议确认权限范围、维护状态及是否会触发本地规划或生成操作。
  • 可结合来源仓库和 README 进一步核验具体用法和限制条件。

SKILL.md

name
openclaw-saas-builder
description
Build SaaS projects end-to-end with OpenClaw as orchestrator and Gemini CLI as a local planning and generation copilot. Use when the user asks to brainstorm, define, scaffold, implement, document, create a GitHub repository, or optionally deploy a SaaS, web app, MVP, internal tool, landing page, dashboard, or productized automation. This skill coordinates requirements, architecture, Rules.md, project-specific skills or plans, implementation phases, GitHub CLI usage, and optional Vercel deployment.

OpenClaw SaaS Builder

Use this skill when the user wants full project orchestration instead of a quick snippet.

Core idea

OpenClaw is the driver. Gemini CLI is the brainstorming and generation copilot. GitHub CLI is for repo creation and GitHub operations. Vercel CLI is optional for deployment.

Do not treat Gemini as an unsupervised executor. Use it to generate plans, alternatives, code drafts, copy, architecture ideas, and reviews. OpenClaw remains responsible for file edits, shell execution, validation, and external side effects.

What this skill should produce

For a serious SaaS or web project, aim to create at least:

  • requirements.md
  • architecture.md
  • Rules.md
  • README.md
  • TODO.md
  • skills-plan.md
  • source code scaffold or implementation

For deployment-ready work, also aim for:

  • .env.example
  • deployment.md
  • CI/deploy notes

Preflight first

Before promising repo creation or deployment, run the preflight helper:

./skills/openclaw-saas-builder/scripts/preflight_saas_builder.sh

Interpretation:

  • If Gemini CLI fails, continue with OpenClaw-only planning or ask whether to proceed without Gemini.
  • If gh auth status fails, do not promise automatic repo creation yet.
  • If vercel whoami fails, do not promise deployment yet.

If Vercel is required, the user should already have the CLI installed and authenticated. Typical checks:

which vercel
vercel --version
vercel whoami

Build modes

Read references/saas-build-modes.md when deciding scope. Use one of these modes explicitly:

  • idea mode
  • MVP mode
  • production mode
  • launch mode

Default workflow

Phase 1: Discovery and brainstorming

Clarify:

  • product goal
  • target users
  • pain point
  • MVP scope
  • must-have features
  • non-goals
  • monetization or business purpose
  • data and privacy concerns
  • preferred stack or constraints

Use Gemini CLI to accelerate this phase. Prefer structured output. Good pattern:

  • ask Gemini for a concise options list
  • ask Gemini for tradeoffs
  • ask Gemini for a JSON spec draft

Phase 2: Requirements package

Create these docs early:

  • requirements.md
  • architecture.md
  • Rules.md
  • skills-plan.md
  • TODO.md

Use the bundled helpers when useful:

./skills/openclaw-saas-builder/scripts/generate_requirements.sh <project-name> '<brief>'
./skills/openclaw-saas-builder/scripts/generate_architecture.sh <project-name> '<brief>'
./skills/openclaw-saas-builder/scripts/generate_rules.sh <project-name> '<brief>'

Read references/saas-doc-templates.md for the expected sections.

If the user asks for diagrams, generate Mermaid diagrams in markdown first.

Phase 3: Implementation plan

Break work into small, ordered milestones. Use TODO.md or a milestone list. Good milestone pattern:

  1. bootstrap repo
  2. scaffold app
  3. core domain logic
  4. auth and data
  5. UI and polish
  6. tests
  7. docs
  8. repo publish
  9. deploy

Phase 4: Build

Choose the build path based on complexity.

For small or medium tasks

  • inspect files directly
  • use Gemini CLI for spec, code drafts, or review
  • edit files with OpenClaw tools
  • run tests locally

For larger coding tasks

Prefer ACP or coding-agent for implementation loops. Use Gemini CLI as planning and review support, not as the only coding engine.

Phase 5: GitHub repository creation

Only do this when the user has explicitly asked for it or clearly requested end-to-end setup.

Typical local flow:

  1. initialize git if needed
  2. create README and baseline docs
  3. verify gh auth status
  4. create repo with a sensible name
  5. set remote
  6. commit initial version
  7. push default branch

Use the helper when appropriate:

./skills/openclaw-saas-builder/scripts/create_github_repo.sh <repo-name> [--private|--public]

Use the GitHub skill for detailed command patterns.

Naming guidance:

  • use a short, readable slug
  • prefer product name or function over vague names
  • avoid joke names unless the user asks

Phase 6: Optional Vercel deployment

Only do this when the user asked for deployment.

Before deploy, verify:

which vercel
vercel --version
vercel whoami

If Vercel auth is not ready, stop and say exactly that. Do not fake deployment readiness.

Use the helper when appropriate:

./skills/openclaw-saas-builder/scripts/deploy_vercel.sh

Typical flow:

  1. verify framework and build output
  2. confirm env vars
  3. run Vercel link or init if needed
  4. deploy
  5. capture deployment URL
  6. write deploy notes to deployment.md

Safety and approval rules

These actions change the outside world and should be treated as explicit-user-intent actions:

  • creating remote repos
  • pushing commits to remote
  • creating cloud projects
  • deploying to Vercel
  • sending webhooks or emails

Planning, docs, scaffolding, and local implementation can proceed normally. For external side effects, confirm intent if the request is ambiguous.

How to use Gemini CLI inside this skill

Use gemini-cli skill patterns. Recommended helpers:

  • ./skills/gemini-cli/scripts/check_gemini.sh
  • ./skills/gemini-cli/scripts/gemini_json_validate.sh
  • ./skills/gemini-cli/scripts/gemini_review.sh
  • ./skills/gemini-cli/scripts/gemini_with_model.sh

Recommended Gemini uses:

  • brainstorming product directions
  • generating JSON specs
  • drafting architecture alternatives
  • drafting landing-page copy
  • reviewing rewritten files
  • naming ideas for repos or products

Bad use:

  • blindly executing Gemini-generated shell
  • trusting invalid JSON
  • letting Gemini decide external side effects without review

Recommended outputs by project stage

Early stage

  • requirements.md
  • architecture.md
  • Rules.md
  • TODO.md

Mid stage

  • code scaffold
  • component and module plan
  • .env.example
  • test checklist

Late stage

  • README.md
  • deployment.md
  • GitHub repo
  • deploy URL

References

Read these when needed:

  • references/saas-doc-templates.md
  • references/repo-and-deploy-checklist.md
  • references/saas-build-modes.md

Use skills/gemini-cli/references/website-prompts.md when the project includes a marketing site or landing page.

Publish readiness notes

This skill is meant to be practical, not magical. It assumes:

  • Gemini CLI is installed and authenticated
  • GitHub CLI is installed and authenticated for repo creation
  • Vercel CLI is installed and authenticated for deployment
  • OpenClaw remains the orchestrator for validation, editing, and safety decisions

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.62%
按下载量换算899

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install opengemini-saas-builder 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills