Understand project structure and core components
mainThe project is organized into skills and scripts. The core logic for X Article publishing resides in the skills/x-article-publisher/ directory:
SKILL.md: Contains the core instructions for the skill.scripts/parse_markdown.py: Handles Markdown parsing.scripts/copy_to_clipboard.py: Manages clipboard operations (currently macOS specific).
x-article-publisher-skill/
├── .claude-plugin/
│ └── plugin.json # Plugin configuration
├── skills/
│ └── x-article-publisher/
│ ├── SKILL.md # Skill core instructions
│ └── scripts/
│ ├── parse_markdown.py # Markdown parsing
│ └── copy_to_clipboard.py # Clipboard operations
├── docs/
│ └── GUIDE.md # This documentation
├── README.md
└── LICENSE