Qiita API integration for searching, reading, and publishing technical articles. Use this skill to search articles, get user posts, publish content, and manage comments on Qiita.
/plugin marketplace add vm0-ai/api0/plugin install api0@api0This skill inherits all available tools. When active, it can use any tool Claude has access to.
scripts/qiita.shQiita is a technical knowledge sharing platform popular in Japan. This skill provides integration for searching articles, publishing content, and interacting with the community.
Set the following environment variable:
export QIITA_ACCESS_TOKEN=your_access_token
Get your access token from: https://qiita.com/settings/tokens/new
read_qiita - Read articles, comments, userswrite_qiita - Post articles, commentsThe script supports 5 modules: item, user, tag, comment, auth
scripts/qiita.sh item search --query "React hooks"
scripts/qiita.sh item search --query "tag:Python" --per-page 20
scripts/qiita.sh item search --query "user:username title:tutorial"
| Parameter | Required | Default | Description |
|---|---|---|---|
| --query | Yes | - | Search query (supports tag:, user:, title:, body:, stocks:) |
| --page | No | 1 | Page number |
| --per-page | No | 20 | Items per page (max 100) |
scripts/qiita.sh item get --id "article_id"
scripts/qiita.sh item mine --per-page 10
scripts/qiita.sh item post --title "Article Title" --body "# Content" --tags "Python,Tutorial"
scripts/qiita.sh item post --title "Draft Post" --body-file ./article.md --tags "React" --private
| Parameter | Required | Default | Description |
|---|---|---|---|
| --title | Yes | - | Article title |
| --body | Yes* | - | Article body in Markdown |
| --body-file | Yes* | - | Read body from file (alternative to --body) |
| --tags | Yes | - | Comma-separated tags (max 5) |
| --private | No | false | Create as private article |
scripts/qiita.sh item update --id "article_id" --title "New Title" --body "Updated content"
scripts/qiita.sh item delete --id "article_id"
scripts/qiita.sh user me
scripts/qiita.sh user get --id "username"
scripts/qiita.sh user items --id "username" --per-page 10
scripts/qiita.sh user stocks --id "username"
scripts/qiita.sh user followers --id "username"
scripts/qiita.sh user following --id "username"
scripts/qiita.sh tag list --per-page 20
scripts/qiita.sh tag list --sort count
| Parameter | Required | Default | Description |
|---|---|---|---|
| --page | No | 1 | Page number |
| --per-page | No | 20 | Tags per page |
| --sort | No | count | Sort by: count or name |
scripts/qiita.sh tag get --id "Python"
scripts/qiita.sh tag items --id "JavaScript" --per-page 10
scripts/qiita.sh comment list --item-id "article_id"
scripts/qiita.sh comment post --item-id "article_id" --body "Great article!"
scripts/qiita.sh comment delete --id "comment_id"
scripts/qiita.sh auth verify
Returns current user info if token is valid.
Qiita search supports special operators:
| Operator | Example | Description |
|---|---|---|
| tag: | tag:Python | Filter by tag |
| user: | user:qiita | Filter by author |
| title: | title:tutorial | Search in title |
| body: | body:example | Search in body |
| stocks: | stocks:>100 | Filter by stock count |
| created: | created:>2024-01-01 | Filter by date |
Combine operators: tag:React title:hooks stocks:>50
# Search for Python tutorials
scripts/qiita.sh item search --query "tag:Python title:tutorial" --per-page 5
# Get specific article
scripts/qiita.sh item get --id "abc123def456"
# Post from command line
scripts/qiita.sh item post --title "Getting Started with Docker" --body "# Introduction
Docker is a containerization platform..." --tags "Docker,DevOps,Tutorial"
# Post from file
scripts/qiita.sh item post --title "My Technical Article" --body-file ./my-article.md --tags "Programming"
# Get trending tags
scripts/qiita.sh tag list --per-page 10 --sort count
# Get user's articles
scripts/qiita.sh user items --id "famous_author" --per-page 5
--private flag for drafts or private content