← Back to Skills Marketplace
glylovechina

Wiki Ops Qa 3

by GLY · GitHub ↗ · v2.0.0 · MIT-0
cross-platform ✓ Security Clean
52
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install wiki-ops-qa-3
Description
Use when an agent should answer simple operations questions by retrieving internal wiki content through wiki MCP, and must refuse to answer when the wiki doe...
README (SKILL.md)

Wiki MCP Ops QA

Overview

Answer simple operations questions from wiki MCP only. If the wiki does not support the answer, say so directly.

When to Use

Use this skill for document-oriented operations questions such as:

  • deployment, release, rollback, restart
  • logs, alerts, SOPs, permissions
  • config items, ports, environment variables

Do not use this skill for:

  • live system inspection
  • code investigation
  • pure conceptual questions
  • undocumented procedures that require inference

Workflow

  1. Decide whether the question is an operations-document question.
  2. Build one to three concise search queries from the service name, system name, environment, alert name, and action.
  3. Run preflight checks before first tool call.
  4. Call builtin-wiki-search-tool.
  5. Pick the most relevant one to three documents.
  6. Call builtin-wiki-document-tool for the selected documents.
  7. Extract only the content that directly answers the question.
  8. Answer from that evidence only.
  9. If evidence is missing, incomplete, or conflicting, refuse or answer conservatively.

Preflight Checks

Before answering, verify:

  • wiki tools are present: builtin-wiki-search-tool, builtin-wiki-document-tool
  • required params are available (keyword, doc_id, optional limit)
  • keyword is a plain search phrase and not an expression with format placeholders

If tool calls fail, switch to error-triage mode and do not produce undocumented runbook steps.

Tool Calls

Use the wiki MCP tools in this order:

  1. Search with builtin-wiki-search-tool
  2. Read with builtin-wiki-document-tool
  3. Answer only after reading the selected page content

Expected usage:

  • builtin-wiki-search-tool
    • keyword: a concise operations query
    • limit: usually 3, increase only if the first pass is weak
  • builtin-wiki-document-tool
    • doc_id: a document id returned by the search tool

Default call pattern:

  1. Build a focused keyword
  2. Call builtin-wiki-search-tool(keyword, limit=3)
  3. Inspect returned titles and ids
  4. Call builtin-wiki-document-tool(doc_id) for the best match
  5. If needed, read one or two more candidate pages before answering

Do not answer from search titles alone when the body is needed to support the conclusion.

Search Rules

  • Preserve service, component, system, and alert names exactly as given.
  • Preserve environment labels such as prod, staging, test, gray, canary.
  • Preserve action terms such as restart, rollback, deploy, release, logs, alarm, SOP.
  • Remove conversational filler.
  • Treat keyword as plain text. Do not build format strings from user input.
  • If the first search is weak, retry with a narrower query or a query that emphasizes the alert name, service name, or environment.

Preferred query construction:

  • restart question: \x3Cservice> restart
  • deploy question: \x3Cservice> deploy or \x3Cservice> release
  • log question: \x3Cservice> logs
  • alert question: \x3Calert> SOP or \x3Calert> handling

If the user includes an environment, append it to the query.

Result Selection Rules

  • Prefer pages whose titles contain both the service or alert name and the requested action.
  • Prefer runbooks, SOPs, deployment guides, and operations manuals over general introductions.
  • If multiple results look similar, read the most operationally specific page first.
  • If the page body does not clearly support the answer, read another candidate or refuse.

Response Contract

Use this shape when answering:

  • Conclusion: direct answer to the question
  • Evidence: wiki page title and the supporting points
  • Unknown: anything the wiki does not explicitly cover

Keep the answer short. Reuse wiki terminology where possible.

Hard Constraints

  • Do not use any source other than wiki MCP.
  • Do not invent commands, steps, or explanations.
  • Do not turn a weak match into a confident answer.
  • Do not hide missing information.
  • If multiple pages conflict, say they conflict and do not choose a side unless one page is clearly authoritative.

Refusal Rules

Refuse or answer conservatively when:

  • search returns no useful results
  • titles look relevant but the page body does not support the answer
  • pages are clearly incomplete or outdated
  • multiple pages conflict
  • the user asks for details not present in the retrieved content

Preferred wording:

  • I don't know based on the wiki results I found.
  • The wiki does not contain enough information for a reliable answer.
  • I found related wiki pages, but they do not explicitly describe that step.

Supported QA Modes

Use one of these modes based on user intent:

  • Direct SOP QA:
    • user asks for exact steps such as restart, rollback, or deploy
    • return concise actionable steps only if explicitly documented
  • Evidence lookup:
    • user asks where a policy, setting, or command is documented
    • prioritize page title plus exact supporting snippet
  • Incident hint QA:
    • user asks how to handle an alert or common fault
    • provide only documented checks and escalation paths

Do not treat this skill as:

  • real-time observability diagnosis
  • shell command execution
  • cross-system root-cause analysis without wiki evidence

Tool Error Triage

If wiki tool invocation fails, classify first and report explicitly:

  • DNS or network resolution errors (lookup ... server misbehaving, timeout):
    • state that wiki endpoint is unreachable from current runtime
    • ask for network or DNS recovery before continuing
  • TLS or certificate errors (x509, self-signed, unknown authority):
    • state certificate trust is blocking the request
    • ask for trusted CA chain or TLS policy confirmation
  • auth errors (401, 403):
    • state credential is invalid, expired, or insufficiently scoped
    • ask for updated authorization configuration
  • request construction errors (%!s(MISSING), malformed query):
    • state query formatting is invalid
    • retry with sanitized plain-text keyword

During triage:

  • do not fabricate operational steps
  • provide a minimal, actionable next check list
  • separate System issue from Wiki evidence

Suggested output shape for failures:

  • Status: why the call failed
  • Impact: what cannot be answered now
  • Next checks: 2-4 concrete checks (network, cert, auth, query)
  • No evidence: explicitly state no wiki evidence was retrieved

Examples

Restart question:

  • Search service X restart
  • Call builtin-wiki-search-tool with that keyword
  • Read the best result with builtin-wiki-document-tool
  • Answer only if the page explicitly describes the restart path
  • Otherwise say the wiki does not provide enough information

Alert handling question:

  • Search alert Y SOP or alert Y handling
  • Read the most relevant SOP or incident page before answering
  • Summarize only the documented procedure
  • Do not add remediation steps that the page does not state
Usage Guidance
Install this only in environments where the agent is allowed to query the configured internal wiki MCP tools. The skill is designed to limit answers to wiki evidence and should not be treated as permission to inspect live systems or invent operational procedures.
Capability Assessment
Purpose & Capability
The stated purpose is to answer simple operations questions from internal wiki content, and the artifact only instructs use of wiki search and document retrieval for documented SOP, deployment, rollback, log, alert, and permission questions.
Instruction Scope
The instructions are conservative: use only wiki MCP, read document bodies before answering, refuse unsupported or conflicting answers, and avoid live system inspection, shell execution, and undocumented inference.
Install Mechanism
Metadata shows a single SKILL.md file with no executable scripts, dependencies, install hooks, or background setup.
Credentials
Access to internal wiki MCP can expose internal documentation, but that access is disclosed and proportionate to the skill's purpose.
Persistence & Privilege
The artifact describes no persistence, privilege escalation, credential/session harvesting, local file indexing, data mutation, or long-running worker behavior.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install wiki-ops-qa-3
  3. After installation, invoke the skill by name or use /wiki-ops-qa-3
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v2.0.0
No code or documentation changes detected in this release. - Skill version updated to 2.0.0. - No modifications to files or content. - Behavior and guidance remain unchanged from the previous version.
v1.0.0
Initial release of the wiki-mcp-ops-qa-test2 skill. - Answers simple operations questions strictly by retrieving evidence from internal wiki MCP; refuses if not sufficiently covered. - Provides structured workflow: search with `builtin-wiki-search-tool`, read with `builtin-wiki-document-tool`, answer only from clear evidence. - Includes detailed query construction, result selection, and hard refusal rules to avoid unsupported or invented steps. - Returns concise output with defined shapes for both QA and tool failure error triage. - Prioritizes accuracy, transparency, and evidence-backed replies over inference or speculation.
Metadata
Slug wiki-ops-qa-3
Version 2.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Wiki Ops Qa 3?

Use when an agent should answer simple operations questions by retrieving internal wiki content through wiki MCP, and must refuse to answer when the wiki doe... It is an AI Agent Skill for Claude Code / OpenClaw, with 52 downloads so far.

How do I install Wiki Ops Qa 3?

Run "/install wiki-ops-qa-3" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Wiki Ops Qa 3 free?

Yes, Wiki Ops Qa 3 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Wiki Ops Qa 3 support?

Wiki Ops Qa 3 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Wiki Ops Qa 3?

It is built and maintained by GLY (@glylovechina); the current version is v2.0.0.

💬 Comments