langsmith-fetch-skill

(β˜… 27)

πŸ” AI observability skill for Claude Code. Debug LangChain/LangGraph agents by fetching execution traces from LangSmith Studio directly in your terminal.

μ˜€λ„ˆμ˜ λ‹€λ₯Έ 레포

planning-with-files β˜… 26,267

AI μ½”λ”© μ—μ΄μ „νŠΈ 및 μž₯κΈ° μ‹€ν–‰ μž‘μ—…μ„ μœ„ν•œ 영ꡬ 파일 기반 κ³„νš 수립 λ„κ΅¬μž…λ‹ˆλ‹€. ν¬λž˜μ‹œ λ°©μ§€ λ§ˆν¬λ‹€μš΄ κ³„νš, `/clear` 및 μ»΄νŒ©μ…˜ μ΄ν›„μ˜ μ„Έμ…˜ 볡ꡬ, μ»¨ν…μŠ€νŠΈ λΆ€νŒ¨ λ°©μ§€λ₯Ό μœ„ν•œ 턴별 μž¬μ£Όμž…, 결정둠적 μ™„λ£Œ 게이트λ₯Ό μ œκ³΅ν•©λ‹ˆλ‹€. Manus μŠ€νƒ€μΌλ‘œ μž‘λ™ν•˜λ©°, Agent Skills ν‘œμ€€μ„ 톡해 Claude Code, Codex, Cursor, Kiro, OpenCode 및 60개 μ΄μƒμ˜ μ—μ΄μ „νŠΈμ—μ„œ μ‚¬μš©ν•  수 μžˆμŠ΅λ‹ˆλ‹€.

Shell
plandeck β˜… 63

The visual Kanban for long-running AI agents. Watch your agent's plan organize itself: dependencies unlock into Ready, the critical path lights up, the one next move is obvious. Nobody wants to read a markdown plan.

JavaScript
promptfusion β˜… 28

🎯 Three-layer prompt composition system for AI agents. Translates numerical weights into semantic priorities that LLMs actually follow. ⚑ Framework-agnostic, open source, built for production multi-agent orchestration.

JavaScript
planning-with-teams β˜… 27

Manus-style context engineering for Claude Code Agent Teams. Coordinate multiple Claude instances with shared planning files.

Python
openui-forge β˜… 22

Cross-IDE, multi-stack agent skill for OpenUI (the Open Standard for Generative UI). Adds OpenUI to existing projects across 12 backend stacks, any LLM provider, and 11 agent platforms. Scaffold, integrate, validate.

PowerShell
BarbersBuddies_Onlineshop_maker β˜… 20

βœ‚οΈ The complete open-source booking platform for barbershops. React + Firebase + Stripe. Multi-language, dark mode, analytics, messaging & more.

JavaScript

파일 탐색기

  • .gitignore
  • CHANGELOG.md
  • CONTRIBUTING.md
  • LICENSE
  • README.md
  • SKILL.md

# CDN으둜 μ‚¬μš©ν•˜κΈ°

jsDelivr

jsDelivrλŠ” 곡개 GitHub 리포지토리λ₯Ό 별도 μ„€μ • 없이 CDN으둜 μ¦‰μ‹œ μ„œλΉ™ν•©λ‹ˆλ‹€. 버전과 νŒŒμΌμ„ κ³ λ₯΄λ©΄ μ›ΉνŽ˜μ΄μ§€μ— λ°”λ‘œ 뢙일 수 μžˆλŠ” 링크와 μ˜ˆμ‹œ μ½”λ“œκ°€ λ§Œλ“€μ–΄μ§‘λ‹ˆλ‹€.

λͺ…λ Ήμ–΄ μš©μ–΄μ§‘

이 λ¬Έμ„œμ—μ„œ μ‚¬μš©λœ λͺ…λ Ήμ–΄λ₯Ό λͺ¨μ•„λ΄€μŠ΅λ‹ˆλ‹€. λ‚―μ„  λͺ…λ Ήμ–΄κ°€ μžˆλ‹€λ©΄ νŽΌμ³μ„œ ν™•μΈν•΄λ³΄μ„Έμš”.

πŸ”

git add

μ„€λͺ… 보기 β–Ό

Stage changed files for a commit.

git add {{path/to/file}}

Stage a file for a commit:

git add {{[-A|--all]}}

Add all files (tracked and untracked):

git add .

Add all files recursively starting from the current folder:

πŸ”

git commit

μ„€λͺ… 보기 β–Ό

Commit files to the repository.

git commit

Open an editor to write a message and commit staged files to the repository:

git commit {{[-m|--message]}} "{{message}}"

Commit staged files to the repository with the specified message:

git commit {{[-F|--file]}} {{path/to/commit_message_file}}

Commit staged files with a message read from a file:

πŸ”

git push

μ„€λͺ… 보기 β–Ό

Push commits to a remote repository.

git push

Send local changes in the current branch to its default remote counterpart:

git push {{remote_name}} {{local_branch}}

Send changes from a specific local branch to its remote counterpart:

git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}

Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:

πŸ”

npx

μ„€λͺ… 보기 β–Ό

이 λͺ…령은 `npm exec`의 λ³„μΉ­μž…λ‹ˆλ‹€.

tldr npm exec

μžμ„Έν•œ λ‚΄μš©μ€ 원본 λͺ…령을 μ°Έκ³ ν•˜μ„Έμš”:

πŸ”

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:

πŸ”

pip list

μ„€λͺ… 보기 β–Ό

List installed Python packages.

pip list

List installed packages:

pip list {{[-o|--outdated]}}

List outdated packages that can be upgraded:

pip list {{[-u|--uptodate]}}

List up-to-date packages:

// repository documentation