examples/typescript-openai-agent/skills/question-answering/SKILL.md
--- id: question-answering-v1 name: question-answering version: 1.0.0 author: [email protected] tags: - question-answering - conversation - assistant - general-purpose - multi-model input_modes: - text/plain - application/json output_modes: - text/plain - application/json --- # Question Answering Skill General-purpose question answering capability powered by OpenRouter. Access 300+ LLM models (GPT-4o, Claude, Llama, Gemini, Mistral, etc.) through a single unified API. Handles c
npx skillsauth add getbindu/bindu question-answeringInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
General-purpose question answering capability powered by OpenRouter. Access 300+ LLM models (GPT-4o, Claude, Llama, Gemini, Mistral, etc.) through a single unified API. Handles conversational queries, explanations, code generation, analysis, and creative writing.
| Provider | Models | Strengths | |----------|--------|-----------| | OpenAI | GPT-4o, GPT-4o-mini | General purpose, fast | | Anthropic | Claude Sonnet, Claude Haiku | Analysis, safety, long context | | Meta | Llama 3.1 70B/405B | Open source, multilingual | | Google | Gemini 2.0 Flash | Multimodal, fast | | Mistral | Mistral Large, Codestral | European, code-focused |
| Metric | Value | |--------|-------| | Average response time | 1-5s (model dependent) | | Max concurrent requests | 10 | | Context window | Up to 128k tokens (model dependent) | | Supported languages | 50+ natural languages |
This skill is used by the TypeScript OpenRouter agent example:
bindufy({
skills: ["skills/question-answering"],
}, async (messages) => {
const response = await openrouter.chat.completions.create({
model: "openai/gpt-4o",
messages: messages,
});
return response.choices[0].message.content;
});
question, answer, explain, help, how, what, why, write, generate, analyze, summarize, compare, code, debug
development
--- id: quiz-generation-v1 name: quiz-generation version: 1.0.0 author: [email protected] tags: - quiz-generation - education - mcq-creation - assessment - langchain - openrouter input_modes: - text/plain - application/json output_modes: - text/plain - application/json --- # Quiz Generation Skill Educational assessment expert that generates high-quality multiple-choice quizzes from any provided text. Creates exactly 10 MCQs with 4 options each, correct answer identification,
development
--- id: research-v1 name: research version: 1.0.0 author: [email protected] tags: - research - question-answering - analysis - summarization - langchain input_modes: - text/plain - application/json output_modes: - text/plain - application/json --- # Research Skill Research and information retrieval capability powered by LangChain.js. Uses GPT-4o to answer questions, summarize information, provide detailed analysis, and generate structured research outputs. ## Capabilities ###
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.