Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问clear审计提醒

hashnode-apihashnode API 文档

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

698

周安装

30

GitHub Stars

31

下载量

245
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:hashnode-api(hashnode API 文档)
来源仓库:https://github.com/rawveg/skillsforge-marketplace
仓库路径:skills/hashnode-api
安装命令:
npx skills add https://github.com/rawveg/skillsforge-marketplace --skill hashnode-api
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rawveg/skillsforge-marketplace --skill hashnode-api

简介

辅助梳理 Hashnode 博客平台的接口结构与集成方式,生成 OpenAPI 规范草稿。

  • 适合前后端联调、文档自动生成和第三方服务接入参考。
  • 通过 GitHub 安装,需了解平台鉴权机制(如 OAuth)与速率限制规则。
  • 生成的接口描述应基于实际使用案例,避免虚构字段或行为。
  • hashnode-api 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Hashnode API Skill

Comprehensive assistance with the Hashnode GraphQL API for blog management, content creation, and user interaction on the Hashnode platform.

When to Use This Skill

This skill should be triggered when:

  • Building integrations with Hashnode blogs or publications
  • Querying Hashnode posts, users, or publication data
  • Creating, publishing, or managing blog posts via API
  • Implementing authentication with Hashnode Personal Access Tokens
  • Working with GraphQL queries or mutations for Hashnode
  • Debugging Hashnode API responses or error codes
  • Setting up pagination (cursor-based or offset-based) for Hashnode data
  • Implementing newsletter subscriptions, comments, or user interactions
  • Migrating from the legacy Hashnode API to the new GQL endpoint

Key Concepts

API Endpoint

All Hashnode API requests go through a single GraphQL endpoint:

  • Endpoint: https://gql.hashnode.com (POST only)
  • Playground: Visit the same URL in a browser to explore the API
  • Legacy API: https://api.hashnode.com is discontinued - migrate to new endpoint

Authentication

  • Most queries work without authentication
  • Sensitive fields (drafts, email, etc.) require authentication
  • All mutations require authentication
  • Authentication method: Add Authorization header with your Personal Access Token (PAT)
  • Get your PAT: https://hashnode.com/settings/developer → "Generate New Token"

Rate Limits

  • Queries: 20,000 requests per minute
  • Mutations: 500 requests per minute

Caching

  • Almost all query responses are cached on the Edge
  • Cache is automatically purged when you mutate data
  • Check cache status in playground (bottom right: HIT/MISS)
  • Important: Always request the id field to avoid stale data

Error Codes

Common GraphQL error codes:

  • GRAPHQL_VALIDATION_FAILED - Invalid query structure
  • UNAUTHENTICATED - Missing or invalid auth token
  • FORBIDDEN - Insufficient permissions
  • BAD_USER_INPUT - Invalid input data
  • NOT_FOUND - Resource doesn't exist

Quick Reference

1. Fetch Publication Details

query Publication {
  publication(host: "blog.developerdao.com") {
    id
    isTeam
    title
    about {
      markdown
    }
  }
}

Get basic information about a publication by its hostname.

2. Fetch Recent Blog Posts

query Publication {
  publication(host: "blog.developerdao.com") {
    id
    isTeam
    title
    posts(first: 10) {
      edges {
        node {
          id
          title
          brief
          url
        }
      }
      pageInfo {
        endCursor
        hasNextPage
      }
    }
  }
}

Retrieve the latest 10 posts from a publication with cursor-based pagination support.

3. Fetch a Single Article by Slug

query Publication {
  publication(host: "blog.developerdao.com") {
    id
    post(slug: "the-developers-guide-to-chainlink-vrf-foundry-edition") {
      id
      title
      content {
        markdown
        html
      }
    }
  }
}

Get full content of a specific article using its slug and publication hostname.

4. Cursor-Based Pagination (Infinite Scroll)

query Publication {
  publication(host: "blog.developerdao.com") {
    id
    posts(
      first: 10
      after: "NjQxZTc4NGY0M2NiMzc2YjAyNzNkMzU4XzIwMjMtMDMtMjVUMDQ6Mjc6NTkuNjQxWg=="
    ) {
      edges {
        node {
          id
          title
          brief
          url
        }
      }
      pageInfo {
        endCursor
        hasNextPage
      }
    }
  }
}

Use endCursor from previous response as after parameter to fetch next page.

5. Offset-Based Pagination (Traditional Pages)

query Followers {
  user(username: "SandroVolpicella") {
    id
    followers(pageSize: 10, page: 1) {
      nodes {
        id
        username
      }
      pageInfo {
        hasNextPage
        hasPreviousPage
        previousPage
        nextPage
      }
    }
  }
}

Navigate between pages using explicit page numbers.

6. Get Entity Count (Series Count Example)

query SeriesCount {
  publication(host: "engineering.hashnode.com") {
    id
    seriesList(first: 0) {
      totalDocuments
    }
  }
}

Result:

{
  "data": {
    "publication": {
      "seriesList": {
        "totalDocuments": 3
      }
    }
  }
}

Use totalDocuments field to get counts without fetching all data.

7. Fetch Posts from a Series

query Publication {
  publication(host: "lo-victoria.com") {
    id
    series(slug: "graphql") {
      id
      name
      posts(first: 10) {
        edges {
          node {
            id
            title
          }
        }
      }
    }
  }
}

Get all posts belonging to a specific series.

8. Fetch Static Pages

query Publication {
  publication(host: "lo-victoria.com") {
    id
    staticPages(first: 10) {
      edges {
        node {
          id
          title
          slug
        }
      }
    }
  }
}

Retrieve custom static pages like "About", "Contact", etc.

9. Fetch Single Static Page

query Publication {
  publication(host: "lo-victoria.com") {
    id
    staticPage(slug: "about") {
      id
      title
      content {
        markdown
      }
    }
  }
}

Get content of a specific static page by slug.

10. Authentication Example - Get Drafts (Requires Auth)

query Publication($first: Int!, $host: String) {
  publication(host: $host) {
    id
    drafts(first: $first) {
      edges {
        node {
          id
          title
        }
      }
    }
  }
}

Headers:

{
  "Authorization": "your-personal-access-token-here"
}

Variables:

{
  "first": 10,
  "host": "your-blog-host.hashnode.dev"
}

Drafts can only be queried by the publication owner with valid authentication.

Reference Files

This skill includes comprehensive documentation in references/:

  • api.md - Complete Hashnode GraphQL API documentation including:

- GQL Playground overview - Caching behavior and best practices - Rate limits and authentication - Status codes and error handling - Pagination methods (cursor-based and offset-based) - Migration guide from legacy API - Query and mutation examples - Full list of available queries and mutations

Use the reference files for detailed information about specific API features, error handling patterns, and advanced query techniques.

Working with This Skill

For Beginners

Start by understanding the core concepts above, then explore:

  1. API Endpoint: Test queries in the playground at https://gql.hashnode.com
  2. Authentication: Generate your PAT at https://hashnode.com/settings/developer
  3. Basic Queries: Try fetching publication details and blog posts first
  4. Pagination: Start with cursor-based pagination for simple infinite scroll

For Intermediate Users

Focus on:

  1. Authentication flows: Implement PAT-based auth in your application
  2. Error handling: Handle GraphQL error codes properly
  3. Pagination strategies: Choose between cursor-based and offset-based based on your UI needs
  4. Caching considerations: Always request id fields to avoid stale data
  5. Content extraction: Work with both markdown and HTML content formats

For Advanced Users

Explore:

  1. Mutations: Publishing posts, managing drafts, updating content
  2. Complex queries: Nested queries with multiple levels (publication → series → posts)
  3. Batch operations: Optimize API calls with GraphQL field selection
  4. Webhook integration: Handle Hashnode webhook events
  5. Rate limit optimization: Implement efficient request batching

Navigation Tips

  • Start broad → go deep: Begin with publication queries, then drill into specific posts/series
  • Check authentication: If you get UNAUTHENTICATED errors, verify your PAT is in the Authorization header
  • Test in playground: Use https://gql.hashnode.com to test queries before implementing
  • Monitor cache: Watch cache HIT/MISS status to optimize your queries
  • Read error messages: GraphQL errors include helpful details in the extensions.code field

Common Use Cases

Building a Blog Frontend

  1. Fetch publication metadata
  2. Get post list with pagination
  3. Display individual posts by slug
  4. Implement series/category navigation
  5. Show static pages (about, contact)

Content Management Dashboard

  1. Authenticate with PAT
  2. List and manage drafts
  3. Publish/update posts
  4. Schedule content
  5. Monitor analytics

Newsletter Integration

  1. Subscribe/unsubscribe users
  2. Fetch subscriber counts
  3. Manage email preferences
  4. Track engagement metrics

Migration from Legacy API

  1. Update endpoint from api.hashnode.com to gql.hashnode.com
  2. Convert REST calls to GraphQL queries
  3. Update authentication mechanism (check docs)
  4. Adjust pagination from old format to cursor/offset-based
  5. Update error handling for new error codes

Resources

Official Documentation

references/

The api.md reference file contains:

  • Complete API specification
  • All available queries and mutations
  • Detailed parameter descriptions
  • Authentication requirements
  • Code examples with proper syntax
  • Links to original documentation
  • Comprehensive error code reference

Important Notes

  • Always request the id field on objects to avoid stale cached data
  • Rate limits are generous but respect them for production apps
  • Cache behavior: Most responses are cached; mutations automatically purge related cache
  • Breaking changes are rare and announced well in advance on Discord
  • Legacy API is shut down - use gql.hashnode.com only

Troubleshooting

Getting UNAUTHENTICATED errors?

  • Verify your Personal Access Token is valid
  • Check the Authorization header is set correctly
  • Ensure you're requesting fields that require auth (drafts, email, etc.)

Not seeing latest data?

  • Always request the id field to avoid stale cached data
  • Check if response is HIT/MISS in playground

Query validation failed?

  • Verify your GraphQL syntax in the playground first
  • Check required parameters are provided
  • Ensure field names match the schema

Rate limit reached?

  • Queries: 20k/min is very generous - optimize your queries
  • Mutations: 500/min limit - batch operations where possible
  • Use caching on your end to reduce API calls

Updating

This skill was automatically generated from official Hashnode documentation. To refresh with updated documentation, regenerate the skill using the latest docs from https://apidocs.hashnode.com.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

30.13%
按下载量换算74

Antigravity

25.96%
按下载量换算64

windsurf

19.08%
按下载量换算47

trae

11.41%
按下载量换算28

Codex

8.34%
按下载量换算20

OpenCode

3.37%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills