← 返回 Skills 市场
ramaaditya49

GC Provider Install

作者 Rama Aditya · GitHub ↗ · v0.1.1 · MIT-0
cross-platform ✓ 安全检测通过
49
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install gc-provider-install
功能描述
Install, repair, or manually configure the GrowthCircle.id gc-provider for OpenClaw and Hermes. Use this whenever a user asks to connect GrowthCircle AI Cons...
使用说明 (SKILL.md)

GC Provider Install

Use this skill to guide an operator through installing or repairing gc-provider and configuring GrowthCircle.id AI keys safely. Keep the instructions practical and key-aware: GrowthCircle model availability depends on the exact AI key used.

Source Of Truth

Use these public sources before inventing behavior:

  • GrowthCircle AI Console docs: https://d.growc.id/llms/ai-console.md
  • Plugin README/source: https://github.com/Growth-Circle/gc-provider
  • In this skill, read references/install-guide.md for the compact install and troubleshooting runbook.

Safety Rules

  • Never ask the user to paste a GrowthCircle AI key into public chat, a public repo, logs, screenshots, or frontend code.
  • Tell the user to create, rotate, label, and revoke keys from https://growthcircle.id/app/ai.
  • Always discover models with the same key that will make requests: GET https://ai.growthcircle.id/v1/models.
  • Do not guess Free, Paid, or Team model IDs. Team/Patungan keys must use only model IDs returned by that team key.
  • Do not map a Team/Patungan key to Free/Paid fallback IDs. If the team model is missing, fail closed and ask the operator to check the team package.
  • Prefer gc-provider in OpenClaw. Use a manual OpenAI-compatible provider only for Hermes or as a temporary fallback before the native plugin is installed.

Workflow

  1. Identify the target runtime.

    • OpenClaw: install or update the native gc-provider plugin.
    • Hermes: configure GrowthCircle manually as an OpenAI-compatible provider, because gc-provider is an OpenClaw plugin.
    • Hermes to OpenClaw migration: keep the skill under skills/gc-provider-install/SKILL.md, migrate skills, then install the native OpenClaw plugin after migration.
  2. Confirm the key source.

    • Ask the user to create the key in GrowthCircle AI Console.
    • Keep secrets in environment variables or the runtime's credential store.
    • Use GROWTHCIRCLE_API_KEY for OpenClaw native plugin installs.
  3. Discover valid model IDs.

    • Run /v1/models with the same key.
    • Use returned IDs exactly.
    • For OpenClaw text models, refs use growthcircle/\x3Cmodel-id>.
  4. Install or configure.

    • For OpenClaw, use the update-or-install command in references/install-guide.md.
    • For Hermes, use the manual OpenAI-compatible provider notes in references/install-guide.md.
  5. Verify.

    • OpenClaw: check plugin state, restart gateway, and list GrowthCircle models.
    • Hermes: send a small chat/completion request with the configured base URL, key, and a model returned by /v1/models.

OpenClaw Quick Path

Use this idempotent path for a new install, tracked update, or repair of a stale copy:

(openclaw plugins update gc-provider || openclaw plugins install clawhub:gc-provider --force)
openclaw plugins enable gc-provider
openclaw gateway restart
openclaw configure --section=model
openclaw models list --provider growthcircle

If OpenClaw says plugins.allow is empty, add the provider to the allowlist without removing other plugins:

openclaw config set plugins.allow '["gc-provider"]' --strict-json
openclaw gateway restart

Hermes Quick Path

Hermes can use GrowthCircle through a manual OpenAI-compatible provider configuration:

providers:
  growthcircle:
    base_url: https://ai.growthcircle.id/v1
    api_key_env: GROWTHCIRCLE_API_KEY
    models:
      - model-id-from-v1-models
provider: growthcircle
model: model-id-from-v1-models

Keep the API key in the environment or Hermes secret mechanism:

export GROWTHCIRCLE_API_KEY="\x3Cgrowthcircle-ai-key>"
curl https://ai.growthcircle.id/v1/models \
  -H "Authorization: Bearer $GROWTHCIRCLE_API_KEY"

If the user is migrating Hermes to OpenClaw, do not treat Hermes plugins as trusted executable code in OpenClaw. Import skills/config through the migration flow, then install gc-provider through OpenClaw:

openclaw migrate hermes --dry-run
openclaw migrate apply hermes --yes
openclaw plugins install clawhub:gc-provider --force
openclaw plugins enable gc-provider
openclaw gateway restart

Troubleshooting Priorities

  • 401: missing, invalid, or revoked GrowthCircle key.
  • 403: key scope, plan, policy, or model entitlement does not allow the request.
  • 429: quota, rate limit, cooldown, or rolling free window.
  • 503: model/path temporarily unavailable.
  • OpenClaw install looks updated but model list is stale: restart openclaw-gateway and re-run model discovery.
  • Team key does not show expected model: verify /v1/models with that exact team key before blaming the plugin.

Output Style

When helping a user:

  • Give commands in the order they should be run.
  • Redact secrets in examples.
  • State whether the path is OpenClaw-native or Hermes-manual.
  • Include verification commands, not only install commands.
  • If the user asks for a one-shot fix, execute the install/update and verification when you have shell access.
安全使用建议
Install this only if you intend to configure GrowthCircle as an AI provider. Review the commands before running them, especially plugin install/update, gateway restart, migration, and plugins.allow changes, and keep GROWTHCIRCLE_API_KEY in a private environment variable or credential store rather than pasting it into chats, logs, screenshots, or code.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The stated purpose is to install, repair, configure, migrate, and verify GrowthCircle provider access for OpenClaw or Hermes, and the artifact content stays within that provider setup and troubleshooting scope.
Instruction Scope
The agent YAML enables implicit invocation, but the skill description and workflow are narrowly framed around explicit GrowthCircle provider installation/configuration, model discovery, and troubleshooting tasks.
Install Mechanism
The guide instructs users to install or update gc-provider from ClawHub, optionally npm or local source, enable the plugin, restart the gateway, and configure models; these are high-impact local configuration changes but are disclosed and purpose-aligned.
Credentials
Network use is limited to documented GrowthCircle endpoints for model discovery and test inference, plus referenced public documentation/source locations; no broad local indexing or unrelated data access is described.
Persistence & Privilege
The skill changes persistent OpenClaw/Hermes provider configuration and may adjust the plugin allowlist, but it also instructs preserving existing allowlist entries and keeping keys in environment variables or credential stores.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install gc-provider-install
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /gc-provider-install 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.1
Use neutral key placeholders and keep the OpenClaw/Hermes install guide aligned with GrowthCircle AI Console safety rules.
v0.1.0
Initial GrowthCircle gc-provider install skill for OpenClaw native setup and Hermes manual configuration.
元数据
Slug gc-provider-install
版本 0.1.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

GC Provider Install 是什么?

Install, repair, or manually configure the GrowthCircle.id gc-provider for OpenClaw and Hermes. Use this whenever a user asks to connect GrowthCircle AI Cons... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 49 次。

如何安装 GC Provider Install?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install gc-provider-install」即可一键安装,无需额外配置。

GC Provider Install 是免费的吗?

是的,GC Provider Install 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

GC Provider Install 支持哪些平台?

GC Provider Install 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 GC Provider Install?

由 Rama Aditya(@ramaaditya49)开发并维护,当前版本 v0.1.1。

💬 留言讨论