AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Metabot Create Wiki

skill-openagentinternet-open-agent-connect-metabot-create-wiki · by openagentinternet

Create a dedicated local Wiki skill from one raw document directory, install it into the shared ~/.metabot/skills skill root, and host bind it so the current platform can use absorb, index, query, wiki_build, and publish workflows.

No reviews yet
0 installs
20 views
0.0% view→install

Install

$ agentstack add skill-openagentinternet-open-agent-connect-metabot-create-wiki

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-openagentinternet-open-agent-connect-metabot-create-wiki)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Metabot Create Wiki? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

metabot-create-wiki

Use this skill when a user wants to turn a specific document folder into a dedicated local Wiki skill that can be used by the current Open Agent Connect host.

Routing

Route natural-language intent through $HOME/.metabot/bin/metabot, then reason over the returned JSON envelope.

  • Prefer JSON and local daemon routes for agent workflows.
  • Open local HTML only for human browsing, trace inspection, publish review, or manual refund confirmation.
  • Treat MetaWeb as the network layer and the local host as a thin adapter.

Actor Selection

  • Use the current local MetaBot identity for commands that need the OAC CLI.
  • If the user names a specific local identity, pass that value through as the actor/from field for publishing actions.
  • Do not ask for an identity when the user only wants to scaffold a local Wiki skill.

Required Inputs

Collect these fields before scaffolding:

  1. skillName: short lowercase skill id, for example metaid-wiki.
  2. rawSourceDir: absolute path to the source document directory.
  3. title: user-facing Wiki title.
  4. description: one sentence describing the generated Wiki skill.

Optional fields:

  • aliases: alternate names for the Wiki skill.
  • workspaceRoot: custom internal workspace directory. The default is inside the generated skill.
  • registryHome: custom private registry directory. The default is inside the generated skill.
  • siteTitle: static site title. The default is title.
  • targetRoot: install root. The default is ~/.metabot/skills.
  • host or bindHosts: host ids to bind after creation. Supported values are codex, claude-code, and openclaw.
  • overwrite: replace an existing generated skill with the same name.
  • overwriteHostBinding: replace an existing host symlink for the generated skill.

Scaffold Command

Use the shared installed skill path when available:

node "$HOME/.metabot/skills/metabot-create-wiki/scripts/scaffold-wiki-skill.js" --payload ''

If this repository checkout is being used directly, use the repository path to the same script.

Minimum payload:

{
  "skillName": "metaid-wiki",
  "title": "MetaID Wiki",
  "description": "Dedicated local Wiki skill for MetaID documents.",
  "rawSourceDir": "/absolute/path/to/raw"
}

Recommended payload when the current host is known:

{
  "skillName": "metaid-wiki",
  "title": "MetaID Wiki",
  "description": "Dedicated local Wiki skill for MetaID documents.",
  "rawSourceDir": "/absolute/path/to/raw",
  "targetRoot": "/Users/example/.metabot/skills",
  "host": "codex"
}

Generated Skill

The scaffold creates a new directory under the shared skill root:

  • SKILL.md
  • wiki.config.json
  • scripts/index.js
  • references/payload-schema-v1.json
  • runtime/metabot-llm-wiki/

The generated skill embeds its own wiki runtime. Users do not need to install a separate metabot-llm-wiki skill.

Host Bind

The scaffold host bind step creates a host-native skill entry that points back to the shared skill directory. This keeps the generated Wiki skill in ~/.metabot/skills while making it visible to the current platform.

If automatic host detection is not enough, rerun the scaffold with host or bindHosts.

Generated Actions

The generated Wiki skill supports:

  • init
  • ingest
  • index
  • absorb
  • query
  • wiki_build
  • bundle_zip
  • publish_zip
  • publish_snapshot
  • publish_all

Operating Rules

  • The generated skill is one-to-one: one skill name, one description, one raw document source.
  • absorb, ingest, index, wiki_build, and publishing actions mirror rawSourceDir into the generated skill workspace.
  • Normal query reads the existing local index and does not mirror raw files or rebuild indexes.
  • After source documents change, run absorb, then run query.
  • If the user explicitly needs update-and-query behavior, pass autoAbsorb:true or refresh:true to query.
  • wiki_build and publish_* actions should use the latest mirrored/indexed data.
  • ZIP upload uses the OAC metabot file upload-large command.
  • On-chain snapshot publishing uses the OAC metabot chain write command.

Completion

Report the generated skill path, raw source path, host binding status, and the available actions. Mention any scaffold warnings exactly enough for the user to act on them.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.