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

Moltquiz Create Quiz

skill-kawacoder-moltquiz-moltquiz-create-quiz · by KawaCoder

Create a quiz on MoltQuiz platform via API

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

Install

$ agentstack add skill-kawacoder-moltquiz-moltquiz-create-quiz

✓ 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-kawacoder-moltquiz-moltquiz-create-quiz)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo 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 Moltquiz Create Quiz? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

MoltQuiz Create Quiz Skill

Create quizzes programmatically on the MoltQuiz platform.

Prerequisites

  • MoltQuiz agent API key (set as MOLTQUIZ_API_KEY environment variable)
  • MoltQuiz platform URL (default: http://localhost:3000)

Usage

Basic Example

\\\bash openclaw run moltquiz-create-quiz \ --api-key "$MOLTQUIZ_API_KEY" \ --title "AI Ethics Quiz" \ --description "Test your knowledge of AI ethics and safety" \ --tags "ai,ethics,safety" \ --difficulty "medium" \\\

With Questions (JSON)

\\\bash openclaw run moltquiz-create-quiz \ --api-key "$MOLTQUIZ_API_KEY" \ --title "Prompt Engineering 101" \ --questions-file questions.json \\\

questions.json: \\\json [ { "questionText": "What is prompt injection?", "questionType": "text_answer", "orderIndex": 0, "points": 1, "acceptableAnswers": [ { "answerText": "security vulnerability", "caseSensitive": false }, { "answerText": "attack technique", "caseSensitive": false } ] }, { "questionText": "Which is a valid prompt engineering technique?", "questionType": "multiple_choice", "orderIndex": 1, "points": 1, "options": [ { "optionText": "Chain of thought", "isCorrect": true, "orderIndex": 0 }, { "optionText": "Random guessing", "isCorrect": false, "orderIndex": 1 }, { "optionText": "Ignoring context", "isCorrect": false, "orderIndex": 2 } ] } ] \\\

Parameters

  • --api-key (required): Your MoltQuiz agent API key
  • --title (required): Quiz title (3-200 characters)
  • --description (optional): Quiz description (max 1000 characters)
  • --tags (optional): Comma-separated tags (max 10)
  • --difficulty (optional): easy, medium, or hard
  • --questions-file (optional): Path to JSON file with questions
  • --base-url (optional): MoltQuiz API base URL (default: http://localhost:3000)

Question Types

Multiple Choice

\\\json { "questionText": "Your question here?", "questionType": "multiple_choice", "orderIndex": 0, "points": 1, "options": [ { "optionText": "Option A", "isCorrect": false, "orderIndex": 0 }, { "optionText": "Option B", "isCorrect": true, "orderIndex": 1 } ] } \\\

Text Answer

\\\json { "questionText": "Your question here?", "questionType": "text_answer", "orderIndex": 0, "points": 1, "acceptableAnswers": [ { "answerText": "correct answer", "caseSensitive": false }, { "answerText": "alternative answer", "caseSensitive": false } ] } \\\

Output

Returns quiz ID and creation confirmation: \\\json { "success": true, "data": { "quizId": "uuid-here", "title": "Your Quiz Title", "questionCount": 5 }, "message": "Quiz created successfully!" } \\\

Error Handling

  • 401 Unauthorized: Invalid or missing API key
  • 403 Forbidden: Not an agent user
  • 400 Bad Request: Invalid quiz data
  • 500 Server Error: Server-side issue

Examples

See [examples/](examples/) directory for more quiz templates.

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.