用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aiFabricoCom/fabrico-collections-codex --skill fabrico-technical-context-discovering命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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-technical-context-discovering |
| description | Establish repository conventions, standards, and patterns. |
This skill provides a systematic approach for understanding a project's technical context before making any code changes. It ensures consistency with existing patterns and prevents introducing conflicting conventions.
Use the checklist below and track your progress:
Discovery progress:
- [ ] Step 0: Check plan file for persisted context
- [ ] Step 1: Check project guidance files
- [ ] Step 2: Analyze existing codebase patterns
- [ ] Step 3: Consult external documentation (if needed)
- [ ] Step 4: Apply the implementation rule
Step 0: Check Plan File for Persisted Context
ALWAYS check first whether a plan file (*.plan.md) exists for the current task and contains a "Technical Context" section.
If a "Technical Context" section exists and is populated:
If no plan file exists, or the "Technical Context" section is missing/empty:
Step 1: Check Project Guidance Files
ALWAYS check first for applicable Codex project guidance:
AGENTS.md at the repository root.AGENTS.md files in relevant directories (e.g., src/, tests/, e2e/, backend/, feature-specific folders) — a AGENTS.md in a subdirectory applies to that subtree.AGENTS.override.md files that replace guidance at a more specific scope.If guidance files exist, they are the primary source of truth for:
Step 2: Analyze Existing Codebase Patterns
If no applicable project guidance is found, or if it doesn't cover specific aspects, analyze the existing codebase to understand and replicate established patterns:
Use the repository search tools to find similar implementations in the codebase and follow the same approach.
Step 3: Consult External Documentation
If neither project guidance nor sufficient existing codebase patterns are available (e.g., new project, greenfield feature, or first implementation of a specific pattern), use external documentation and industry best practices:
IMPORTANT: When using best practices in a greenfield scenario, document your decisions in code comments or README to establish patterns for future development.
Step 4: Apply the Implementation Rule
Based on what you discovered, apply this decision hierarchy:
| Context Available | Action |
|---|---|
| Guidance files exist | Follow them strictly. Applicable project guidance takes precedence over general best practices. |
| No guidance files, but codebase has patterns | Mirror existing patterns exactly. Consistency with existing code > theoretical best practices. |
| No guidance files, no existing patterns | Apply documentation-based best practices and industry standards. Document decisions for future reference. |
Critical rule: Never introduce new patterns unless explicitly requested by the user or specified in the implementation plan.