소스 정보
- 저장소
- trueorc/claudevn
- 최근 소스 활동
- 2026년 4월 1일 21:26
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/trueorc/claudevn --skill claudevn-patterns명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | claudevn-patterns |
| description | Coding patterns extracted from ClaudeVN AI agent orchestration platform |
| version | 1.0.0 |
| source | local-git-analysis |
| analyzed_commits | 200 |
This project uses conventional commits with issue references:
| Prefix | Usage |
|---|---|
feat: | New features (59% of commits) |
fix: | Bug fixes (20% of commits) |
docs: | Documentation updates (9%) |
test: | Test-related changes (8%) |
refactor: | Code restructuring (2%) |
chore: | Maintenance tasks (2%) |
Commit message format:
feat: Short description of feature (#issue-number)
fix: Brief bug fix description (#issue-number)
docs: Documentation update description
73% of commits reference GitHub issues - always link commits to issues.
Branch naming convention:
{type}/issue-{number}-{short-description}
Examples:
feat/issue-155-shutdown-handlerfix/issue-102-failing-unit-testsdocs/issue-149-goal-api-endpointsserving/ # Central coordination hub (FastAPI, Python 3.10+)
├── api/ # API route handlers (one file per domain)
├── models/ # Pydantic data models
├── services/ # Business logic services
├── git/ # Git infrastructure (SSH, hooks, PR management)
├── mcp/ # MCP server for compute communication
│ └── tools/ # MCP tool implementations
├── tests/ # Unit and integration tests
└── frontend/ # React UI with TailwindCSS
└── src/
├── api/ # API client functions
├── components/ # React components by domain
├── hooks/ # Custom React hooks
└── pages/ # Page-level components
marketplace/ # Skill marketplace service (separate from Serving)
├── skills/ # Skill definitions (YAML)
│ └── system/ # System-provided skills
├── personas/ # Persona bundles (YAML)
│ └── system/ # System personas
├── services/ # Business logic
└── tests/ # Test files
compute/ # Claude Code compute infrastructure
├── api/ # API endpoints
├── services/ # Service layer
└── tests/ # Test files
| Type | Pattern | Example |
|---|---|---|
| API routes | {domain}.py | serving/api/work_map.py |
| Models | {domain}.py | serving/models/compute.py |
| Services | {domain}_service.py | serving/services/work_map_service.py |
| Tests | test_{module}.py | serving/tests/test_work_map_service.py |
| React components | {ComponentName}.jsx | WorkMapGraph.jsx |
| React hooks | use{HookName}.js | useWorkMap.js |
| API clients | {domain}.js | api/workmap.js |
| Skills | {skill-name}.yaml | skills/system/code-writer.yaml |
serving/app.py - Main FastAPI applicationserving/services/work_map_service.py - Work coordination logicserving/models/work_map.py - Work map data modelsCLAUDE.md - Project instructions for Claude Codemarketplace/api.py - Marketplace API routesserving/models/{domain}.pyserving/services/{domain}_service.pyserving/api/{domain}.pyserving/app.pyserving/tests/test_{domain}_{feature}.pymarketplace/skills/system/{skill-name}.yamlmarketplace/tests/test_skill_registry.pyserving/mcp/tools/{tool_name}.pyserving/mcp/tools/__init__.pyserving/mcp/models.pyserving/mcp/server.pyserving/tests/test_mcp_{tool_name}.pyserving/frontend/src/components/{domain}/{ComponentName}.css alongside componentserving/frontend/src/hooks/use{Feature}.jsserving/frontend/src/api/{domain}.jsserving/frontend/src/pages/{Page}Page.jsxserving/frontend/src/App.jsx if new page"""Tests for {module}."""
import pytest
from unittest.mock import AsyncMock, MagicMock, patch
# Fixtures
@pytest.fixture
def mock_redis():
"""Create mock Redis client."""
redis = MagicMock()
redis._redis = MagicMock()
redis._redis.hset = AsyncMock()
return redis
@pytest.fixture
def service():
"""Create service for testing."""
return MyService(redis_client=None)
# Test Classes grouped by functionality
class TestServiceInit:
"""Test service initialization."""
def test_init_without_deps(self):
"""Test initialization without dependencies."""
pass
@pytest.mark.asyncio
async def test_async_operation(self):
"""Test async operations."""
pass
{component}/tests/test_{module}.pytests/test_{integration_type}.pyscripts/run_unit_tests.shscripts/run_integration_tests.shtest_{module_name}.pyTest{FeatureName} (e.g., TestWorkMapServiceInit)test_{action}_{scenario} (e.g., test_init_without_redis)model_config (not deprecated class Config)datetime.now(timezone.utc) (not deprecated datetime.utcnow()){type}/issue-{number}-{description}feat: Description (#123){type}/issue-{number}-...)