imoonkey

Quora

```

imoonkey 56 3 Updated 4mo ago

Resources

6
GitHub

Install

npx skillscat add imoonkey/openweb/src-sites-quora

Install via the SkillsCat registry.

About this skill

Here's a thinking process: 1. **Analyze the Request:** - **Input:** A skill description for a "Quora" AI agent skill from a SKILL.md file. - **Task:** Write a 2-3 sentence plain-text summary in English. - **Content Requirements:** - Objectively explain what the skill does - What problem it solves - When an agent or developer should use it - **Constraints:** - Objective, factual tone only - No marketing language, superlatives, calls to action - Natural prose, no bullet points, no headings, no markdown - Do NOT wrap in quotes - At most 60 words - **Output:** ONLY the summary text. 2.

SKILL.md

Quora

Overview

Q&A platform — users ask questions, write answers, follow topics and users.

Workflows

Search and read answers

  1. searchQuestions(query) → pick question → slug
  2. getQuestion(slug) → question detail with top answer previews
  3. getAnswers(slug) → full answer text for the question

Look up a user

  1. getProfile(username) → name, bio, followers, answer count, expertise topics

Operations

Operation Intent Key Input Key Output Notes
searchQuestions find questions query (keyword) qid, slug, title, answerCount entry point
getQuestion question detail slug ← searchQuestions title, answerCount, topics, topAnswers includes top 3 answer previews
getAnswers read all answers slug ← searchQuestions author, content, upvotes, views, createdAt up to 20 answers, GQL-backed
getProfile user profile username name, bio, followers, answers username from profile URL slug

Quick Start

# Search for questions about a topic
openweb quora exec searchQuestions '{"query": "machine learning"}'

# Get question details
openweb quora exec getQuestion '{"slug": "What-is-JavaScript"}'

# Get answers for a question
openweb quora exec getAnswers '{"slug": "What-is-JavaScript"}'

# Get a user profile
openweb quora exec getProfile '{"username": "Adam-DAngelo"}'