New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

jun-claude-code

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jun-claude-code

Claude Code configuration template - copy .claude settings to your project

latest
npmnpm
Version
0.7.0
Version published
Maintainers
1
Created
Source

jun-claude-code

Claude Code 설정 템플릿 CLI. 미리 정의된 Agents, Skills, Hooks, Workflow를 프로젝트에 설치하여 Claude Code 환경을 빠르게 구축합니다.

설치

# npx로 바로 실행
npx jun-claude-code

# 또는 전역 설치
npm install -g jun-claude-code

사용법

명령어 미리보기

명령어설명활성화되는 기능
jun-claude-code전역 설정 (~/.claude/) 설치Agents 13종, Skills 6종, Hooks 2종, Workflow
jun-claude-code --project프로젝트 설정 (.claude/) 설치전역과 동일 (프로젝트별 오버라이드용)
jun-claude-code init-projectGitHub Project 연동세션 시작 시 태스크 자동 로드, 태스크 관리 Agent
jun-claude-code init-contextContext 자동 생성 설정PR 기반 Context 자동 생성, Codebase/Business 문서화, 별도 브랜치 PR

기본 명령어: 설정 복사

templates/global 설정 파일을 ~/.claude로 복사합니다.

jun-claude-code
옵션설명
--project, -p전역(~/.claude/) 대신 프로젝트(.claude/)에 설치
--dry-run, -d실제 복사 없이 복사될 파일 목록만 확인
--force, -f확인 없이 모든 파일 덮어쓰기

init-project: GitHub Project 연동

프로젝트 디렉토리에서 GitHub Project 태스크 관리를 설정합니다.

jun-claude-code init-project

인터랙티브로 다음을 설정합니다:

  • GitHub Owner (org 또는 user)
  • Project Number
  • Repository (owner/repo 형식)

활성화되는 기능:

기능설명
세션 시작 시 태스크 자동 로드Claude Code 시작 시 task-loader.sh가 GitHub Project에서 할당된 태스크를 조회
태스크 관리 Agentproject-task-manager Agent를 통해 태스크 상태 변경, 코멘트 추가 가능

설정 후 생성되는 파일:

.claude/
├── project.env                    # GitHub Project 환경변수
├── settings.json                  # StartSession hook 설정
├── hooks/
│   └── task-loader.sh             # 태스크 조회 스크립트
└── agents/
    └── project-task-manager.md    # 태스크 관리 Agent

read:project 스코프 필요: gh auth refresh -s read:project,project

init-context: Context 자동 생성 설정

GitHub Actions를 통한 Context 문서 자동 생성을 설정합니다.

jun-claude-code init-context

활성화되는 기능:

기능설명
PR 기반 Context 자동 생성PR이 생성/업데이트되면 GitHub Actions가 코드 변경을 분석하여 Context 문서 생성
Codebase Context모듈별 파일 경로, 함수명, 의존 관계를 .claude/context/codebase/에 정리
Business Context기술 변경을 비즈니스 관점으로 변환하여 .claude/context/business/에 정리
별도 브랜치 PR 방식생성된 Context를 {브랜치명}-generated-context 브랜치로 분리하여 선택적 머지 가능

설정 후 생성되는 파일:

.github/workflows/
└── context-gen.yml                # Context 생성 GitHub Actions 워크플로우

.claude/
├── agents/
│   └── context-generator.md       # Context 자동 생성 Agent
├── skills/
│   └── ContextGeneration/
│       └── SKILL.md               # Context 자동 생성 Skill
└── context/
    ├── codebase/
    │   └── INDEX.md               # 코드베이스 모듈 참조 목록
    └── business/
        └── INDEX.md               # 비즈니스 도메인 참조 목록

필수 설정:

  • Repository Actions 권한 활성화

    • Repository → Settings → Actions → General
    • Workflow permissions 섹션에서:
      • "Read and write permissions" 선택
      • ✅ "Allow GitHub Actions to create and approve pull requests" 체크
  • CLAUDE_CODE_OAUTH_TOKEN 추가

    • Settings → Secrets and variables → Actions → New repository secret

포함 내용

Agents (templates/global/agents/)

작업별 전문 Subagent 13종. Main Agent의 Context Window를 절약하면서 각 작업을 위임합니다.

Agent역할
explore코드베이스 탐색
task-planner작업 계획 수립
code-writer코드 작성 (Opus)
simple-code-writer단순 수정 (Haiku)
code-reviewer셀프 코드 리뷰
git-managerGit 커밋/PR
impact-analyzer사이드이펙트 분석
qa-tester테스트/빌드 검증
architect아키텍처 설계
designerUI/UX 스타일링
director작업 총괄 디렉터
context-collector소스 코드 기반 Context 수집
context-managerContext 문서 관리

Skills (templates/global/skills/)

Skill설명
Coding공통 코딩 원칙 (SRP, 응집도, 가독성)
GitGit 커밋/PR 규칙, PR 리뷰, 피드백 적용
Backend백엔드 개발 원칙 (레이어, TypeORM)
ReactReact 개발 (TanStack Router, React Hook Form, Tailwind)
Documentation.claude 문서 작성 가이드
Director디렉터 Agent 운영 스킬

Hooks (templates/global/hooks/)

Hook설명
workflow-enforced.sh워크플로우 순서 강제 프로토콜
skill-forced.shSkill/Agent 평가 프로토콜

Project Agents (templates/project/agents/)

프로젝트 .claude/에 설치되는 프로젝트별 Agent.

Agent역할
project-task-managerGitHub Project 태스크 관리
context-generatorContext 자동 생성
project-context-collector.claude/context/ 문서 기반 프로젝트 배경 수집

Project Skills (templates/project/skills/)

Skill설명
ContextGenerationContext 자동 생성 스킬

Workflow

Planning -> Validation -> Implementation -> Review 순서의 작업 워크플로우와 Context 절약 원칙(Subagent 위임 규칙)을 정의합니다.

프로젝트 구조

templates/
├── global/                # ~/.claude/에 설치되는 전역 설정
│   ├── CLAUDE.md          # 작업 가이드 (워크플로우, Context 절약 원칙)
│   ├── agents/            # Subagent 정의 (13종)
│   ├── skills/            # 스킬 가이드 (코딩, Git, BE, FE 등)
│   ├── hooks/             # 자동 실행 스크립트 (워크플로우 강제, 스킬 평가)
│   └── settings.json      # Claude Code 전역 설정
└── project/               # 프로젝트 .claude/에 설치되는 프로젝트별 설정
    ├── agents/            # project-task-manager, context-generator Agent
    ├── skills/            # ContextGeneration Skill
    ├── hooks/             # task-loader Hook
    ├── workflows/         # context-gen Workflow
    └── project.env.example

커스터마이징

--project 옵션을 사용하면 전역 템플릿을 프로젝트 .claude/에 바로 설치할 수 있습니다. 설치 후 필요에 맞게 수정하세요.

your-project/
├── .claude/
│   ├── context/           # 프로젝트 아키텍처, 도메인 지식
│   └── skills/            # 프로젝트 전용 스킬
└── CLAUDE.md              # 프로젝트 설명
  • context/: 프로젝트의 사실/배경 정보 (아키텍처, 도메인 모델, API 스펙 등)
  • skills/: 프로젝트 고유의 작업 절차 (배포 방법, 테스트 규칙 등)

License

MIT

Keywords

claude

FAQs

Package last updated on 02 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts