document-summary

설치
CLI
npx skills add https://github.com/tatat/agents-playground --skill document-summary

CLI를 사용하여 이 스킬을 설치하고 작업 공간에서 SKILL.md 워크플로 사용을 시작하세요.

최근 업데이트: 4/22/2026

agents-playground

Experimental repository for LangChain / LangGraph agents.

Setup

uv sync
cp .env.sample .env  # Set ANTHROPIC_API_KEY
uv run pre-commit install

Usage

# Jupyter Notebook
uv run jupyter notebook

# CLI Chat (see docs/agentchat.md)
uv run agentchat-direct
uv run agentchat-programmatic

Development

make lint        # ruff check
make format      # ruff format
make typecheck   # mypy
make typecheck-nb # mypy (notebooks)
make check       # lint + typecheck
make check-all   # check + typecheck-nb

make check-all runs automatically via pre-commit hook.