소스 정보
- 저장소
- 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-architecture-designing명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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-architecture-designing |
| description | Design implementation architecture from task context. |
This skill helps you design the architecture that follows best practices and solves the actual business goal.
Use the checklist below and track your progress:
Analysis progress:
- [ ] Step 1: Understand the goal of the task
- [ ] Step 2: Analyse the current codebase
- [ ] Step 3: Ask questions about ambiguous parts
- [ ] Step 4: Design a solution
- [ ] Step 5: Create an implementation plan document
Step 1: Understand the goal of the task
Thoroughly process the conversation history and task *.research.md file to fully understand the business goal of the task.
If the task or research file references PDF documents (technical specifications, API documentation, architecture documents, compliance requirements), use the pdf-reader tool to extract and review their content.
Step 2: Analyse the current codebase Perform a current codebase analysis to get a full picture of a current system in a context of the task. Make sure to understand the project and domain best practices.
Step 3: Ask questions about ambiguous parts After getting a full picture of the codebase and the task, ask any remaining questions. Don't continue until you get all of the answers.
Step 4: Design a solution Based on your findings design a solution architecture.
Follow the best security and software design patterns.
Your goal is to design a solution that is not over-engineered and easy to comprehend by developers, that is at the same time scalable, secure and easy to maintain.
The example patterns you should check (but you are not limited to only use those):
Make sure to follow the best UI/UX patterns:
Make sure to follow security best practices like OWASP TOP10
The design has to meet quality assurance criteria, meaning it has to be fully tested using combination of e2e, unit and integration tests.
Don't duplicate any work.
Make sure to use fabrico-implementation-gap-analysing skill to verify what was already implemented from your plan and what should be added. Make sure to include the result in final plan.
Make sure to divide the plan into a small phases.Each phase should have a list of tasks with special place to mark the finished tasks later on. After phase is finished only the fast running tests and quality checks should be run to verify that the implementation is on the right track - unit tests, integration tests, static code analysis, linters, formatting check and project build.
The plan has to include code review phase at the end, fully done by the fabrico-code-reviewer subagent (.codex/agents/fabrico-code-reviewer.toml) using the $fabrico-review command (.agents/skills/fabrico-review/SKILL.md). Make sure to pass e2e execution to that subagent as a part of the prompt and do not run those tests by yourself.
For features with UI components based on Figma designs, each UI implementation task should be followed by a [REUSE] UI verification task delegated to the fabrico-ui-reviewer subagent (.codex/agents/fabrico-ui-reviewer.toml) using the $fabrico-review-ui command (.agents/skills/fabrico-review-ui/SKILL.md). Include the Figma URL in every verification task. Do not run UI verification from the software engineer level — let the engineering manager orchestrate the verify-fix loop.
For features involving LLM application prompts (system prompts, RAG templates, tool-calling instructions, classification/extraction prompts), add a [REUSE] prompt engineering task delegated to the fabrico-prompt-engineer subagent (.codex/agents/fabrico-prompt-engineer.toml) using the $fabrico-engineer-prompt command (.agents/skills/fabrico-engineer-prompt/SKILL.md). Separate prompt design from application code — the software engineer implements the integration code, the prompt engineer designs the prompt content. Include the use case, target model, and any existing prompt drafts in the task description.
Don't provide deployment plans, code pushing instructions, code review instructions on repository.
Step 5: Create a implementation plan document
Save the plan as a document following the ./plan.example.md template.
Don't add or remove any sections from the template. Follow the structure and naming conventions strictly to ensure clarity and consistency.
fabrico-codebase-analysing - for analyzing the existing architecture, components, and patternsfabrico-implementation-gap-analysing - for verifying what was already implemented and what should be addedfabrico-technical-context-discovering - for establishing project conventions and existing patterns before designingfabrico-sql-and-database-understanding - for designing database schemas, data models, normalisation strategies, and indexing as part of the solution architecture