ワンクリックで
cc1c-navigator
Navigate monorepo structure, locate components, explain service dependencies.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Navigate monorepo structure, locate components, explain service dependencies.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use to deliver an approved OpenSpec change through execution matrix, Beads, checks, and handoff.
Use to verify the full pool run flow on a live contour through report and OData evidence.
Use to inspect, restart, and verify local frontend/backend runtimes with targeted probes.
Use for shipped UI action journal, request correlation, WebSocket churn, or frontend observability work.
Work with 1C databases via OData protocol: create batch operations, handle transactions (< 15 seconds!), debug OData requests.
Execute DevOps tasks for CommandCenter1C: start/stop services locally (host machine), check health endpoints, view logs, run migrations. Use when user needs to start development environment, check service status, debug deployment issues, or mentions local development, health checks, logs, restart.
| name | cc1c-navigator |
| description | Navigate monorepo structure, locate components, explain service dependencies. |
| allowed-tools | ["Read","Glob","Grep"] |
Помочь навигировать по CommandCenter1C monorepo, находить компоненты, понимать зависимости между сервисами.
Используй этот skill когда пользователь:
Основные директории:
go-services/ # Go микросервисы
orchestrator/ # Django backend
frontend/ # React frontend
infrastructure/ # Docker, K8s, monitoring
docs/ # Документация
scripts/ # Dev scripts
.claude/ # AI skills
См. полную структуру: {baseDir}/reference/monorepo-structure.md
Go микросервисы:
cmd/main.gointernal/handlers/internal/service/internal/repository/Django apps:
models.pyviews.pyserializers.pytasks.pyReact:
src/api/src/components/src/pages/src/stores/| Что | Где | Пример |
|---|---|---|
| Go handlers | go-services/*/internal/handlers/ | api-gateway/internal/handlers/auth_handler.go |
| Django models | orchestrator/apps/*/models.py | databases/models.py |
| React components | frontend/src/components/ | components/databases/DatabaseList.tsx |
| Celery tasks | orchestrator/apps/*/tasks.py | operations/tasks.py |
| Config files | Root, config/, infrastructure/ | .env.local |
| Scripts | scripts/dev/ | start-all.sh |
Frontend (:5173)
↓
API Gateway (:8080)
↓
Orchestrator (:8000)
↓
PostgreSQL + Redis
↓
Celery → Go Workers → 1C
cluster-service:
cluster-service (:8088) → ras-grpc-gw (:9999) → RAS (:1545)
См. детальный граф: {baseDir}/reference/service-dependencies.md
grep -r "Database" orchestrator/apps/ --include="*.py"
ls go-services/*/internal/handlers/*_handler.go
grep -r "getDatabases" frontend/src/ --include="*.ts*"
ls orchestrator/apps/*/tasks.py
grep -r "@task" orchestrator/ --include="*.py"
User Operation (Write): User → Frontend → API Gateway → Orchestrator → Celery → Go Worker → 1C
Cluster Monitoring (Read): User → Frontend → cluster-service → ras-grpc-gw → RAS
go-services/shared/ (используется всеми)cc1c-<service>.exeНавигация:
cd go-services/api-gateway
cd orchestrator/apps/databases
cd frontend/src/components
Поиск:
find . -name "models.py"
grep -r "OneCODataAdapter" orchestrator/
grep -r "TODO" --include="*.py" --include="*.go"
Skill directory: {baseDir}/.claude/skills/cc1c-navigator/
Reference:
{baseDir}/reference/monorepo-structure.md - Полная структура{baseDir}/reference/service-dependencies.md - Граф зависимостейProject docs:
docs/START_HERE.md - Быстрый стартCLAUDE.md - AI инструкцииREADME.md - Project READMEcc1c-devops - Запуск сервисовcc1c-service-builder - Создание компонентовcc1c-sprint-guide - Roadmap и фазы