{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bookstack",
    "name": "BookStack",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/xenofex7/bookstack",
    "canonicalUrl": "https://clawhub.ai/xenofex7/bookstack",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bookstack",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bookstack",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/bookstack.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/bookstack"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/bookstack",
    "agentPageUrl": "https://openagent3.xyz/skills/bookstack/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bookstack/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bookstack/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "BookStack Skill",
        "body": "BookStack is an open-source wiki and documentation platform. This skill lets you manage your entire knowledge base via API – perfect for automation and integration."
      },
      {
        "title": "Features",
        "body": "📚 Books – create, edit, delete\n📑 Chapters – organize content within books\n📄 Pages – create/edit with HTML or Markdown\n🔍 Full-text search – search across all content\n📁 Shelves – organize books into collections"
      },
      {
        "title": "Quick Start",
        "body": "# List all books\npython3 scripts/bookstack.py list_books\n\n# Search the knowledge base\npython3 scripts/bookstack.py search \"Home Assistant\"\n\n# Get a page\npython3 scripts/bookstack.py get_page 123\n\n# Create a new page (Markdown)\npython3 scripts/bookstack.py create_page --book-id 1 --name \"My Page\" --markdown \"# Title\\n\\nContent here...\""
      },
      {
        "title": "Books",
        "body": "python3 scripts/bookstack.py list_books                    # List all books\npython3 scripts/bookstack.py get_book <id>                 # Book details\npython3 scripts/bookstack.py create_book \"Name\" [\"Desc\"]   # New book\npython3 scripts/bookstack.py update_book <id> [--name] [--description]\npython3 scripts/bookstack.py delete_book <id>"
      },
      {
        "title": "Chapters",
        "body": "python3 scripts/bookstack.py list_chapters                 # List all chapters\npython3 scripts/bookstack.py get_chapter <id>              # Chapter details\npython3 scripts/bookstack.py create_chapter --book-id <id> --name \"Name\"\npython3 scripts/bookstack.py update_chapter <id> [--name] [--description]\npython3 scripts/bookstack.py delete_chapter <id>"
      },
      {
        "title": "Pages",
        "body": "python3 scripts/bookstack.py list_pages                    # List all pages\npython3 scripts/bookstack.py get_page <id>                 # Page preview\npython3 scripts/bookstack.py get_page <id> --content       # With HTML content\npython3 scripts/bookstack.py get_page <id> --markdown      # As Markdown\n\n# Create page (in book or chapter)\npython3 scripts/bookstack.py create_page --book-id <id> --name \"Name\" --markdown \"# Content\"\npython3 scripts/bookstack.py create_page --chapter-id <id> --name \"Name\" --html \"<p>HTML</p>\"\n\n# Edit page\npython3 scripts/bookstack.py update_page <id> [--name] [--content] [--markdown]\npython3 scripts/bookstack.py delete_page <id>"
      },
      {
        "title": "Search",
        "body": "python3 scripts/bookstack.py search \"query\"                # Search everything\npython3 scripts/bookstack.py search \"query\" --type page    # Pages only\npython3 scripts/bookstack.py search \"query\" --type book    # Books only"
      },
      {
        "title": "Shelves",
        "body": "python3 scripts/bookstack.py list_shelves                  # List all shelves\npython3 scripts/bookstack.py get_shelf <id>                # Shelf details\npython3 scripts/bookstack.py create_shelf \"Name\" [\"Desc\"]  # New shelf"
      },
      {
        "title": "Configuration",
        "body": "Set the following environment variables:\n\nexport BOOKSTACK_URL=\"https://your-bookstack.example.com\"\nexport BOOKSTACK_TOKEN_ID=\"your-token-id\"\nexport BOOKSTACK_TOKEN_SECRET=\"your-token-secret\"\n\nOr configure via your gateway config file under skills.entries.bookstack.env."
      },
      {
        "title": "Create an API Token",
        "body": "Log in to your BookStack instance\nGo to Edit Profile → API Tokens\nClick Create Token\nCopy the Token ID and Secret\n\n⚠️ The user needs a role with \"Access System API\" permission!"
      },
      {
        "title": "API Reference",
        "body": "Base URL: {BOOKSTACK_URL}/api\nAuth Header: Authorization: Token {ID}:{SECRET}\nOfficial Docs: https://demo.bookstackapp.com/api/docs\n\nAuthor: xenofex7 | Version: 1.0.2"
      }
    ],
    "body": "BookStack Skill\n\nBookStack is an open-source wiki and documentation platform. This skill lets you manage your entire knowledge base via API – perfect for automation and integration.\n\nFeatures\n📚 Books – create, edit, delete\n📑 Chapters – organize content within books\n📄 Pages – create/edit with HTML or Markdown\n🔍 Full-text search – search across all content\n📁 Shelves – organize books into collections\nQuick Start\n# List all books\npython3 scripts/bookstack.py list_books\n\n# Search the knowledge base\npython3 scripts/bookstack.py search \"Home Assistant\"\n\n# Get a page\npython3 scripts/bookstack.py get_page 123\n\n# Create a new page (Markdown)\npython3 scripts/bookstack.py create_page --book-id 1 --name \"My Page\" --markdown \"# Title\\n\\nContent here...\"\n\nAll Commands\nBooks\npython3 scripts/bookstack.py list_books                    # List all books\npython3 scripts/bookstack.py get_book <id>                 # Book details\npython3 scripts/bookstack.py create_book \"Name\" [\"Desc\"]   # New book\npython3 scripts/bookstack.py update_book <id> [--name] [--description]\npython3 scripts/bookstack.py delete_book <id>\n\nChapters\npython3 scripts/bookstack.py list_chapters                 # List all chapters\npython3 scripts/bookstack.py get_chapter <id>              # Chapter details\npython3 scripts/bookstack.py create_chapter --book-id <id> --name \"Name\"\npython3 scripts/bookstack.py update_chapter <id> [--name] [--description]\npython3 scripts/bookstack.py delete_chapter <id>\n\nPages\npython3 scripts/bookstack.py list_pages                    # List all pages\npython3 scripts/bookstack.py get_page <id>                 # Page preview\npython3 scripts/bookstack.py get_page <id> --content       # With HTML content\npython3 scripts/bookstack.py get_page <id> --markdown      # As Markdown\n\n# Create page (in book or chapter)\npython3 scripts/bookstack.py create_page --book-id <id> --name \"Name\" --markdown \"# Content\"\npython3 scripts/bookstack.py create_page --chapter-id <id> --name \"Name\" --html \"<p>HTML</p>\"\n\n# Edit page\npython3 scripts/bookstack.py update_page <id> [--name] [--content] [--markdown]\npython3 scripts/bookstack.py delete_page <id>\n\nSearch\npython3 scripts/bookstack.py search \"query\"                # Search everything\npython3 scripts/bookstack.py search \"query\" --type page    # Pages only\npython3 scripts/bookstack.py search \"query\" --type book    # Books only\n\nShelves\npython3 scripts/bookstack.py list_shelves                  # List all shelves\npython3 scripts/bookstack.py get_shelf <id>                # Shelf details\npython3 scripts/bookstack.py create_shelf \"Name\" [\"Desc\"]  # New shelf\n\nConfiguration\n\nSet the following environment variables:\n\nexport BOOKSTACK_URL=\"https://your-bookstack.example.com\"\nexport BOOKSTACK_TOKEN_ID=\"your-token-id\"\nexport BOOKSTACK_TOKEN_SECRET=\"your-token-secret\"\n\n\nOr configure via your gateway config file under skills.entries.bookstack.env.\n\nCreate an API Token\nLog in to your BookStack instance\nGo to Edit Profile → API Tokens\nClick Create Token\nCopy the Token ID and Secret\n\n⚠️ The user needs a role with \"Access System API\" permission!\n\nAPI Reference\nBase URL: {BOOKSTACK_URL}/api\nAuth Header: Authorization: Token {ID}:{SECRET}\nOfficial Docs: https://demo.bookstackapp.com/api/docs\n\nAuthor: xenofex7 | Version: 1.0.2"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/xenofex7/bookstack",
    "publisherUrl": "https://clawhub.ai/xenofex7/bookstack",
    "owner": "xenofex7",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bookstack",
    "downloadUrl": "https://openagent3.xyz/downloads/bookstack",
    "agentUrl": "https://openagent3.xyz/skills/bookstack/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bookstack/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bookstack/agent.md"
  }
}