소스 정보
- 저장소
- aiFabricoCom/fabrico-collections-codex
- 최근 소스 활동
- 2026년 7월 14일 18:53
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/aiFabricoCom/fabrico-collections-codex --skill fabrico-review-codebase명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Audit AWS cost optimization and tagging compliance.
Audit GCP cost optimization and labeling compliance.
Process discovery materials into Jira-ready epics and user stories, or iterate on an existing backlog.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | fabrico-review-codebase |
| description | Analyze dead code, duplication, and improvement opportunities. |
Invocation portability:
$fabrico-*below means the discovered entry workflow. Use the unqualified name for repository or filesystem installs and$fabrico-collections:fabrico-*for plugin installs.
Use the user’s current request as the workflow input. Expected context: [optional path or layer/app to scope the analysis].
Keep orchestration in the calling Codex thread. Discover the repository structure first, then spawn independent
fabrico-architectspecialists in parallel for the bounded analysis scopes defined in Phase 2. The calling thread owns coordination, cross-scope architecture assessment, report synthesis, and the final response. If the agent profile is unavailable, as in a skills-only plugin installation, perform those scopes in the current thread with the required skills and the same review contract. If this workflow is already running insidefabrico-architect, analyze only the bounded scope assigned by the caller and return structured findings; never start the orchestration phase or spawn another architect. Your goal is to perform a thorough code quality analysis of the repository. The analysis should cover dead code detection, code duplication identification, and improvement proposals. The results must be saved to a markdown report file.
Before starting, load and follow these skills:
fabrico-codebase-analysing - for the structured codebase analysis process only (note: this workflow's "Report Structure" section overrides any report/template instructions from the skill)fabrico-technical-context-discovering - to understand project conventions, architecture patterns, and established practicesfabrico-code-reviewing - for code quality standards, best practices verification, and security considerationsfabrico-technical-context-discovering skill to understand project conventions, coding standards, and existing patterns.From a user-facing calling thread, spawn at most five fabrico-architect specialists at a time — one per independent
layer/app identified. If this caller itself has a parent, reserve that thread and cap the batch at four. Batch
additional scopes after a worker returns. For a large single-layer repository, split work by non-overlapping
top-level modules so useful analysis can still run in parallel. Each specialist should receive detailed instructions
including:
fabrico-codebase-analysing, fabrico-code-reviewing)Each specialist must analyze only its assigned scope, return evidence to the calling orchestrator, and stop. It must not spawn a sibling, parent, or replacement orchestrator. Serialize work only when two scopes would inspect or write the same generated artifact; the specialists must not write the final report.
For each layer/app, the subagent should:
@deprecated or similar annotations that is no longer referenced.any.Use the fabrico-architect perspective to evaluate:
code-quality-report.md in the repository root.The report must follow this structure:
# Code Quality Report - <repository-name>
## Overview
| Field | Value |
|---|---|
| Repository | <name> |
| Repository Type | Monorepo / Single System |
| Date | <date> |
| Layers/Apps Analyzed | <list> |
## Executive Summary
<2-3 paragraph summary of overall code health, major findings, and recommended priorities>
---
## Findings by Layer/App
### <Layer/App Name> (`<path>`)
#### Dead Code
| # | Severity | Type | Location | Description |
|---|---|---|---|---|
| 1 | 🔴/🟡/🟢 | <type> | `<file:line>` | <description> |
#### Duplications
| # | Severity | Type | Locations | Description | Recommendation |
|---|---|---|---|---|---|
| 1 | 🔴/🟡/🟢 | <type> | `<path1>`, `<path2>` | <description> | <action> |
#### Improvement Opportunities
| # | Severity | Category | Location | Description | Recommendation |
|---|---|---|---|---|---|
| 1 | 🔴/🟡/🟢 | <category> | `<file:line>` | <description> | <action> |
<!-- Repeat for each Layer/App -->
---
## Architecture Observations
| Category | 🔴 Critical | 🟡 Important | 🟢 Nice to Have | Total |
|---|---|---|---|---|
| Dead Code | | | | |
| Duplications | | | | |
| Improvements | | | | |
| | | | | |
fabrico-architect specialists and performs the cross-scope architecture assessment itself.