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

Metabot Llm Wiki

skill-openagentinternet-open-agent-connect-metabot-llm-wiki-runtime · by openagentinternet

Embedded runtime for generated local Wiki skills. It manages local registries, raw document ingestion, incremental indexes, cited queries, static wiki builds, ZIP bundles, large-file upload, and optional on-chain snapshot publication.

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

Install

$ agentstack add skill-openagentinternet-open-agent-connect-metabot-llm-wiki-runtime

✓ 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-llm-wiki-runtime)

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 Llm Wiki? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

MetaBot LLM Wiki Runtime

This runtime is embedded inside each generated Wiki skill. It is not installed as a standalone default OAC skill.

Registry

The runtime keeps a private registry for the generated skill unless payload.registryHome overrides it.

  • Default registry file: /.wiki-home/registry.json
  • Each registry entry includes kbId, rootDir, title, and aliases.
  • When no kbId is provided, the runtime resolves from payload.wiki, wikiName, project, projectName, name, the default registry entry, or the only registered project.

Default Flow

  1. registry_create creates or registers a Wiki project.
  2. ingest mirrors raw documents into the workspace.
  3. index builds local lexical/vector/hybrid indexes.
  4. absorb runs incremental ingest and index in one step.
  5. query answers with citations from the local index.
  6. wiki_build creates a static HTML wiki.
  7. publish_all builds the site, creates a ZIP, optionally uploads it, and optionally publishes a snapshot pin.

publish_all runs an incremental absorb when the current project has no indexed documents.

Publish Modes

Publishing is controlled by two flags:

  • uploadZip: upload the ZIP with metabot file upload-large.
  • snapshotOnChain: publish the snapshot with metabot chain write.

Compatibility:

  • snapshotOnChain takes priority over the legacy publishOnChain flag.
  • uploadZip:true uploads even when zipUri is present.
  • uploadZip:false reuses zipUri or keeps a local ZIP when no public URI is provided.
  • When snapshotOnChain:true, zipUri must be public. Local file:// paths are rejected.

Command

node "/runtime/metabot-llm-wiki/scripts/index.js" --payload ''

Payload shape:

{
  "action": "query",
  "kbId": "metaid-wiki",
  "requestId": "req-001",
  "payload": {}
}

Actions

  • registry_create
  • registry_list
  • registry_set_default
  • registry_resolve
  • registry_remove
  • init
  • ingest
  • index
  • query
  • absorb
  • wiki_build
  • bundle_zip
  • publish_zip
  • publish_snapshot
  • publish_all

Examples

Create a Wiki project and make it the default:

{
  "action": "registry_create",
  "payload": {
    "title": "MetaID Wiki",
    "kbId": "metaid-wiki",
    "aliases": ["metaid", "MetaID"],
    "setDefault": true
  }
}

Query the default Wiki:

{
  "action": "query",
  "payload": {
    "question": "What does this knowledge base say about MetaID?"
  }
}

Run a local publish preview:

{
  "action": "publish_all",
  "payload": {
    "uploadZip": false,
    "snapshotOnChain": false
  }
}

Upload the ZIP and publish a snapshot:

{
  "action": "publish_all",
  "payload": {
    "uploadZip": true,
    "snapshotOnChain": true
  }
}

Runtime Notes

  • The runtime is dependency-light and writes deterministic ZIP files without requiring a separate ZIP package.
  • PDF and DOCX extraction use optional local tools when available. If those tools are missing, the runtime reports the missing parser instead of silently dropping documents.
  • Upload and chain writes use the installed OAC metabot CLI. Set METABOT_CLI or OAC_METABOT_CLI to override the CLI path.

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.