بنقرة واحدة
structure-scout
Discover repository structure and identify services (API, frontend, shared, workers)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Discover repository structure and identify services (API, frontend, shared, workers)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Generate PRODUCT_HANDOVER sitemap for product managers. Creates a hierarchical documentation structure where each folder has a PRODUCT.md describing user-facing capabilities.
Analyze git diff from product perspective to identify new, modified, or removed user-facing features
Generate preview of PRODUCT_HANDOVER updates without modifying actual docs. Creates parallel directory with proposed changes highlighted.
Update PRODUCT_HANDOVER files based on change analysis. Creates new docs, modifies existing ones, handles removals.
Extract detailed product documentation for individual features (endpoints, screens, components)
Compare current branch (with uncommitted changes) to main/master and preview PRODUCT_HANDOVER updates for pending changes.
| name | structure-scout |
| description | Discover repository structure and identify services (API, frontend, shared, workers) |
Analyze repository structure and identify all services with their types and relationships.
Given a repository path, discover:
{
"repository_type": "monorepo|single|unknown",
"services": [
{
"name": "api",
"path": "apps/api",
"type": "api",
"entry_points": ["apps/api/src/main.ts"],
"dependencies": ["shared-types"]
},
{
"name": "web",
"path": "apps/web",
"type": "frontend",
"entry_points": ["apps/web/src/app.tsx"],
"dependencies": ["api", "shared-types"]
}
],
"relationships": [
{"from": "web", "to": "api", "type": "uses"}
]
}