pi-config
My personal pi coding agent configuration - skills and extensions
파일 탐색기
- index.ts
- .gitignore
- execute.md
- plan.md
- review.md
- superconductor-setup.md
- todos.md
- SKILL.md
- SKILL.md
- SKILL.md
- extension-guidelines.md
- release-workflow.md
- repository-structure.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- session-format.md
- read_session.py
- SKILL.md
- SKILL.md
- claude-code-extensions.md
- design-principles.md
- output-patterns.md
- skill-patterns.md
- workflow-patterns.md
- quick_validate.py
- SKILL.md
- orchestration.md
- worktrees-and-reviews.md
- SKILL.md
- SKILL.md
- SKILL.md
- .gitignore
- AGENTS.md
- LICENSE
- mcp.json
- models.json
- package.json
- README.md
- settings.json
- setup.sh
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
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:
git diff
설명 보기 ▼
git diff
Show changes to tracked files.
git diff
Show unstaged changes:
git diff HEAD
Show all uncommitted changes (including staged ones):
git diff --staged
Show only staged (added, but not yet committed) changes:
git pull
설명 보기 ▼
git pull
Fetch branch from a remote repository and merge it to local repository.
git pull
Download changes from default remote repository and merge it:
git pull {{[-r|--rebase]}}
Download changes from default remote repository and use fast-forward:
git pull {{remote_name}}
Download changes from a specific remote repository:
