スキル一覧に戻る
MacHu-GWU

adf-format-json-schema

by MacHu-GWU

Atlassian Document Format Parser

3🍴 1📅 2026年1月4日
GitHubで見るManusで実行

SKILL.md


name: adf-format-json-schema description: Query Atlassian Document Format (ADF) JSON schema definitions to understand ADF node and mark types. Use this skill when implementing ADF dataclass nodes/marks, or when user asks about ADF structure, ADF nodes, ADF marks, or Atlassian Document Format implementation.

ADF JSON Schema Query Skill

This skill provides tools to query the Atlassian Document Format (ADF) JSON schema, which defines the structure of all node and mark types used in Confluence pages and Jira issue fields.

Purpose

When implementing ADF nodes or marks as Python dataclasses, you need to understand:

  • What properties each type has
  • Which properties are required vs optional
  • The allowed values for each property

This skill helps you query the schema to get this information.

Commands

List All Definitions

Lists all available node and mark definitions in the ADF schema:

.venv/bin/python ./.claude/skills/adf-format-json-schema/scripts/adf_schema_cli.py list_def

Output format: name = <definition_name>, properties = [<property_list>]

Definitions follow naming conventions:

  • *_node - Node types (e.g., paragraph_node, heading_node)
  • *_mark - Mark types (e.g., strong_mark, em_mark, link_mark)

Get Definition Details

Gets the full JSON schema for a specific definition:

.venv/bin/python ./.claude/skills/adf-format-json-schema/scripts/adf_schema_cli.py get_def <definition_name>

Example:

.venv/bin/python ./.claude/skills/adf-format-json-schema/scripts/adf_schema_cli.py get_def strong_mark

Workflow

When implementing an ADF node or mark:

  1. List definitions to find the exact definition name
  2. Get definition details to understand the schema structure
  3. Implement the dataclass based on the schema properties and requirements

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です