Resources
6Install
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
searchQuestions(query)→ pick question →sluggetQuestion(slug)→ question detail with top answer previewsgetAnswers(slug)→ full answer text for the question
Look up a user
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"}'