惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
J
Java Code Geeks
I
InfoQ
腾讯CDC
Vercel News
Vercel News
IT之家
IT之家
V
Visual Studio Blog
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
有赞技术团队
有赞技术团队
月光博客
月光博客
Martin Fowler
Martin Fowler
量子位
L
LangChain Blog
B
Blog
Last Week in AI
Last Week in AI
博客园 - 司徒正美
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans

Hacker News - Newest: "OpenClaw"

OpenClaw just launched an official app for iPhone, details here - 9to5Mac OpenClaw Launch — Deploy AI Chatbots in Seconds Self-Host OpenClaw AI Agent on VPS: Full Setup Guide GitHub - xltvy/openclaw-memgpt: OpenClaw plugin that gives agents MemGPT-style memory: tiered core/archival/recall storage, self-directed memory operations via tool calls, memory-pressure warnings, and recursive summarisation. Integrates the reference MemGPT implementation via a local sidecar service, preserving the original architecture without reimplementation. Malicious AI 23 ClawHub Plugins Squat Official Org Scopes - Manifold Security what shipping OpenClaw in production taught us — AutoClaw AgentLine — AI Phone API | Phone Numbers, Voice & SMS for AI Agents Make Your OpenClaw Agent Cheaper, and Measure It Yourself GitHub - sammysltd/OpenEmployee: Make your OpenClaw agent employable: deny-by-default governance, budgets, allowlists, approval gates, and a signed audit trail via MakerChecker. Migrate from OpenClaw | Hermes Agent StackOverflow closed my OpenClaw and paperclipAI integration q. as "irrelevant" GitHub - sausin/outpost: Removing AI agents' quiet security problem Potassium — ClawHub Plugins Pi Building Pi, Openclaw's Minimalist Coding Agent | Mario Zechner, Creator of Pi I Spent 4 Hours So You Don’t Have To: Hetzner Metal + NixOS in ~15 Minutes − Irakli's blog GitHub - snuri00/osint-mcp: Self-hosted OSINT toolkit — MCP server, AI REPL, CLI, web app & chat apps (WhatsApp/Telegram/Discord via OpenClaw). Entity, event/news & social/community intelligence. Keyless-first. What a Regex Can't Do GitHub - ai-sns/openclaw-hermes-agent-network: OpenClaw Hermes AI Agent Social Network🦞💬🦞Built on Google 3D Maps and A2A protocol, connects OpenClaw and Hermes agents worldwide in a 3D environment. Phishing for Lobsters: How We Tricked OpenClaw into Spilling Secrets GitHub - CODEANDTRUST/clawcall: Give your OpenClaw / self-hosted AI agent inbound phone calls - a Twilio-to-gateway voice bridge with working agent tools mid-call (MIT). Build a ZeroCost Web Automation Pipeline with OpenRouter, OpenClaw, and MediaUse Let OpenClaw Run Wild in Simulation, Not on Your Customers | Veris AI GitHub - gpdir16/tabyAgent: A lighter, easier alternative to OpenClaw/Hermes. Runs autonomously inside Docker and chats with you through Telegram. Ask HN: What are the biggest problems you find in OpenClaw/Hermes? Microsoft launches Scout, an OpenClaw-inspired personal assistant GitHub - openclaw/openclaw-windows-node: Windows companion suite for OpenClaw - System Tray app, Shared library, Node, and PowerToys Command Palette extension Microsoft unveils Scout, an autonomous AI agent built on OpenClaw Gavriel Cohen found his own code inside OpenClaw, so he walked away GitHub - hunvreus/heypi: Chat agents for your team, with approvals and sandboxed tools. Slack, Discord, Telegram, webhooks.
GitHub - kevinslin/openai-apps: Support openai apps in op...
2026-04-08 · via Hacker News - Newest: "OpenClaw"
OpenAI Apps logo

Use ChatGPT apps inside OpenClaw.

Prerequisites

Quickstart

  1. Clone this repo:
git clone https://github.com/kevinslin/openai-apps.git
cd openai-apps
  1. Install dependencies and the local bundle into OpenClaw:
pnpm install
openclaw plugins install .
  1. Enable the bundle in your OpenClaw config:
  • set allow_destructive_actions to always in order to support write actions (eg. updating google calendar). default is never

Warning

Enabling write actions (allow_destructive_actions: "always") increases risk. Agent mistakes or prompt-injection attacks can trigger unintended destructive operations (for example, deleting or modifying data in connected apps like email, calendar, or task systems). Keep this set to "never" unless you explicitly accept that risk.

{
  "plugins": {
    "entries": {
      ...
      "openai-apps": {
        "enabled": true,
        "config": {
          "allow_destructive_actions": "never",
          "connectors": {
            "*": {
              "enabled": true
            }
          }
        }
      }
    }
  }
}
  1. Restart the OpenClaw gateway so plugin config changes are loaded.
  2. Open your normal OpenClaw chat/TUI session and issue an app-backed request (examples in Usage below).

Usage

summarize my recent emails
CleanShot 2026-03-30 at 18 38 20@2x
add a calendar event reminding me to walk my gerbil tomorrow at 7am for 30 minutes
CleanShot 2026-03-30 at 18 39 50@2x

Configuration

All bundle config lives under plugins.entries["openai-apps"].config.

  • allow_destructive_actions: Controls destructive app-action elicitations. Use "always" to auto-accept, "on-request" to prompt through the MCP client when supported, or "never" to auto-decline. Defaults to "never".
  • connectors: Per-app enablement map. Use explicit connector ids like gmail, linear, or google_calendar.
  • connectors["*"]: Enables all accessible ChatGPT apps, with explicit connector entries able to disable individual apps.
  • appServer.command / appServer.args: Override how the bundle launches codex app-server.

Example with one explicitly enabled connector:

{
  "plugins": {
    "entries": {
      "openai": {
        "enabled": true
      },
      "openai-apps": {
        "enabled": true,
        "config": {
          "allow_destructive_actions": "never",
          "connectors": {
            "gmail": {
              "enabled": true
            }
          }
        }
      }
    }
  }
}

Wildcard Configuration

To enable all accessible ChatGPT apps, use *:

{
  "plugins": {
    "entries": {
      "openai": {
        "enabled": true
      },
      "openai-apps": {
        "enabled": true,
        "config": {
          "allow_destructive_actions": "never",
          "connectors": {
            "*": {
              "enabled": true
            }
          }
        }
      }
    }
  }
}

You can combine wildcard enablement with explicit disables:

{
  "plugins": {
    "entries": {
      "openai-apps": {
        "enabled": true,
        "config": {
          "allow_destructive_actions": "never",
          "connectors": {
            "*": {
              "enabled": true
            },
            "slack": {
              "enabled": false
            }
          }
        }
      }
    }
  }
}

Limitations

  • Currently, destructive actions do not support on-demand elicitation (dynamic permission prompts). The OpenClaw PI MCP client does not currently support MCP elicitations.

Runtime State

The bundle keeps its runtime state under plugin-runtimes/openai-apps/.

  • codex-home/: shared CODEX_HOME used for both snapshot refresh and per-tool invocation
  • connectors.snapshot.json: persisted connector records derived from app/list
  • refresh-debug.json: last refresh result/debug payload written by the bundle

Both refresh and invocation launch codex app-server with the same bundle-owned codex-home. Invocation still starts a fresh app-server thread for every tool call, but it now rewrites the derived apps config into the app-server-managed config inside that shared home before starting the turn instead of using a temporary invocation-only home.

Snapshot Shape

The persisted snapshot under plugin-runtimes/openai-apps/connectors.snapshot.json stores connector-level records derived from app/list. It does not persist raw inventory or any status payload.

Example:

{
  "version": 2,
  "fetchedAt": "2026-03-30T18:00:00.000Z",
  "projectedAt": "2026-03-30T18:00:00.000Z",
  "accountId": "acct_123",
  "authIdentityKey": "user@example.com",
  "connectors": [
    {
      "connectorId": "gmail",
      "appId": "asdk_app_gmail",
      "appName": "Gmail",
      "publishedName": "chatgpt_app_gmail",
      "appInvocationToken": "gmail",
      "description": "Read and send Gmail messages.",
      "pluginDisplayNames": ["Gmail"],
      "isAccessible": true,
      "isEnabled": true
    }
  ]
}

Internals

This bundle:

  • publishes one local MCP tool per enabled ChatGPT app connector
  • uses codex app-server as the single authority for both tool publication and invocation
  • reads OpenClaw-rooted openai-codex auth and projects it into the spawned app-server session

Published tool names use the chatgpt_app_<connectorId> namespace. Each tool accepts a single natural-language request string and executes the app on a fresh app-server thread.

For more information on plugin internal logic, see flows.

Appendix

Calls to App Server

Setting the developer message

[
  {
    approvalPolicy: {
      granular: {
        sandbox_approval: false,
        rules: false,
        skill_approval: false,
        request_permissions: true,
        mcp_elicitations: true,
      },
    },
    developerInstructions:
      'You are servicing one OpenClaw connector tool call for Gmail. Use the app mentioned in the user input instead of browsing or relying on unrelated tools. Do not use browser, shell, file, web, image, memory, or unrelated tools. Do not ask follow-up questions. Do not fabricate success. Return only JSON matching the schema {"status":"success|failure","result":"string","error":"string"}.',
    ephemeral: false,
    experimentalRawEvents: false,
    persistExtendedHistory: true,
  },
];

Example call

[
  {
    text: "$gmail Summarize my recent emails",
    text_elements: [],
    type: "text",
  },
  {
    name: "Gmail",
    path: "app://asdk_app_gmail",
    type: "mention",
  },
];