claude-blog

(★ 1,685)

Claude Code blog skill suite: 30 sub-skills, 5 agents, 5-gate v1.9.0 Blog Delivery Contract, dual-optimized for Google rankings and AI citations. Active development at AI-Marketing-Hub/claude-blog (AI Marketing Hub Pro community); public releases ship here.

오너의 다른 레포

claude-seo ★ 14,716

Claude Code를 위한 범용 SEO 스킬. 기술적 SEO, E-E-A-T, 스키마, GEO/AEO, 백링크, 로컬 SEO, 맵 인텔리전스, 시맨틱 클러스터링, 이커머스 SEO, 글로벌 SEO, Google API, PDF/Excel 보고서 기능을 포함하는 25개의 서브 스킬과 18개의 서브 에이전트. 옵션으로 DataForSEO, Firecrawl, Banana 확장 프로그램 지원.

Python
claude-obsidian ★ 11,105

Obsidian과 Claude Code를 위한 자기 조직화(self-organizing) AI 세컨드 브레인. 어떤 소스든 던져넣기만 하면 Claude가 읽고, 링크를 걸고, 개인이 소유한 순수 Markdown의 연결된 지식 그래프 하나로 정리해 줍니다. AI 노트 필기, 개인 지식 관리(PKM), 그리고 오픈소스 Notion 대안입니다. Karpathy의 LLM Wiki 패턴을 기반으로 합니다.

Python
claude-ads ★ 8,339

Claude Code에서 12개의 광고 플랫폼(Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, Apple, Amazon, Reddit, Pinterest, Snapchat, X)을 지원하는 Claude 우선(Claude-first) 유료 미디어 운영 스킬: 소스 기반 감사(audit), 결정론적 스코어링, 버전 관리되는 JSON 보고서, 그리고 권한이 제한된(capability-gated) 계정 변경 기능.

Python
banana-claude ★ 968

AI image generation skill for Claude Code -- Creative Director powered by Gemini

Python
claude-youtube ★ 328

Claude Code skill for YouTube creators — channel audits, video SEO, retention scripts, thumbnails, content strategy, Shorts optimization, analytics, monetization, and more.

Python
claude-canvas ★ 282

AI-orchestrated visual production for Obsidian Canvas. Create presentations, flowcharts, mood boards, knowledge graphs, and galleries with intelligent layout and AI-generated content.

Python

파일 탐색기

  • .gitattributes
  • .gitignore
  • .mcp.example.json
  • .pre-commit-config.yaml
  • CHANGELOG.md
  • CITATION.cff
  • CLAUDE.md
  • install.ps1
  • install.sh
  • LICENSE
  • NOTICE
  • pyproject.toml
  • README.md
  • requirements.lock
  • requirements.txt
  • uninstall.ps1
  • uninstall.sh
  • uv.lock

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

claude

설명 보기 ▼

코드베이스를 이해하고 자연어 명령을 통해 더 빠르게 코딩할 수 있도록 도와주는 에이전트 기반 코딩 도구.
더 많은 정보: <https://code.claude.com/docs/en/cli-reference>.

claude prompt

프롬프트로 실행:

claude update

`claude`를 업데이트:

claude mcp list

지정된 MCP 서버 목록을 표시:

🔍

git checkout

설명 보기 ▼

Checkout a branch or paths to the working tree.

git checkout -b {{branch_name}}

Create and switch to a new branch:

git checkout -b {{branch_name}} {{reference}}

Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):

git checkout {{branch_name}}

Switch to an existing local branch:

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

pip install

설명 보기 ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

pwsh

설명 보기 ▼

시스템 관리를 위해 특별히 설계된 명령줄 셸 및 스크립팅 언어.
이 명령은 PowerShell 버전 6 이상(또는 PowerShell Core 및 크로스 플랫폼 PowerShell)을 의미합니다.
원래 Windows 버전(5.1 이하, 레거시 Windows PowerShell이라고도 함)을 사용하려면 `pwsh` 대신 `powershell`을 사용하세요.
더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pwsh>.

pwsh

대화형 셸 세션 시작:

pwsh -NoProfile

시작 구성 파일을 로드하지 않고 대화형 셸 세션 시작:

pwsh -Command "{{echo 'powershell is executed'}}"

특정 명령 실행:

🔍

python3

설명 보기 ▼

이 명령은 `python`의 별칭입니다.

tldr python

자세한 내용은 원본 명령을 참고하세요:

// repository documentation