Markdown Converter
Agent skill for markdown-converter
> **Documentation Version**: 1.0
Sign in to like and favorite skills
Documentation Version: 1.0
Last Updated: 2025-07-13
Project: amazonBuyer
Description: amazon 商品自動購買工具
Features: Task agents, technical debt prevention
This file provides essential guidance to Claude Code (claude.ai/code) when working with code in this repository.
⚠️ RULE ADHERENCE SYSTEM ACTIVE ⚠️
Claude Code must explicitly acknowledge these rules at task start
These rules override all other instructions and must ALWAYS be followed:
Before starting ANY task, Claude Code must respond with:
"✅ CRITICAL RULES ACKNOWLEDGED - I will follow all prohibitions and requirements listed in CLAUDE.md"
find, grep, cat, head, tail, ls commands → use Read, LS, Grep, Glob tools insteadSTOP: Before starting any task, Claude Code must explicitly verify ALL points:
Step 1: Rule Acknowledgment
Step 2: Task Analysis
Step 3: Technical Debt Prevention (MANDATORY SEARCH FIRST)
Step 4: Session Management
⚠️ DO NOT PROCEED until all checkboxes are explicitly verified
Amazon商品自動購買工具 - 提供自動化Amazon商品購買功能
Before starting ANY task, verify:
# Python virtual environment python -m venv venv source venv/bin/activate # Linux/Mac venv\Scripts\activate # Windows # Install dependencies pip install -r requirements.txt # Run main application python src/main/python/main.py
# Creating new file without searching first Write(file_path="new_feature.py", content="...")
# 1. SEARCH FIRST Grep(pattern="feature.*implementation", include="*.py") # 2. READ EXISTING FILES Read(file_path="existing_feature.py") # 3. EXTEND EXISTING FUNCTIONALITY Edit(file_path="existing_feature.py", old_string="...", new_string="...")
⚠️ Prevention is better than consolidation - build clean from the start.
🎯 Focus on single source of truth and extending existing functionality.
📈 Each task should maintain clean architecture and prevent technical debt.