# Send Project Summary to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "project-summary",
    "name": "Project Summary",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Fratua/project-summary",
    "canonicalUrl": "https://clawhub.ai/Fratua/project-summary",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/project-summary",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=project-summary",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "project-summary",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T11:18:56.989Z",
      "expiresAt": "2026-05-14T11:18:56.989Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=project-summary",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=project-summary",
        "contentDisposition": "attachment; filename=\"project-summary-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "project-summary"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/project-summary"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/project-summary",
    "downloadUrl": "https://openagent3.xyz/downloads/project-summary",
    "agentUrl": "https://openagent3.xyz/skills/project-summary/agent",
    "manifestUrl": "https://openagent3.xyz/skills/project-summary/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/project-summary/agent.md"
  }
}
```
## Documentation

### project-summary — Instant Codebase Overview

Generate a structured project summary for onboarding developers or providing context to agents.

### 1. Scan Project Root

Read these files first (all optional):

package.json / pyproject.toml / Cargo.toml / go.mod / *.sln / *.csproj
README.md — existing description
LICENSE
Dockerfile / docker-compose.yml
.github/workflows/*.yml / .gitlab-ci.yml / Jenkinsfile
tsconfig.json / babel.config.* / webpack.config.* / vite.config.*
.eslintrc* / .prettierrc* / pyproject.toml [tool.ruff]

### 2. Detect Language & Framework

Primary language — count file extensions:

find . -type f -not -path '*/node_modules/*' -not -path '*/.git/*' -not -path '*/dist/*' -not -path '*/target/*' -not -path '*/__pycache__/*' -not -path '*/.venv/*' | sed 's/.*\\.//' | sort | uniq -c | sort -rn | head -10
# Windows:
Get-ChildItem -Recurse -File -Exclude node_modules,.git,dist,target | Group-Object Extension | Sort-Object Count -Descending | Select-Object -First 10 Count,Name

Framework — check dependencies (see readme-generator skill for detection table).

### 3. Map Architecture

Identify the architecture pattern from directory structure:

StructurePatternsrc/controllers/, src/models/, src/routes/MVCsrc/features/*/, each with components+hooks+apiFeature-basedsrc/domain/, src/application/, src/infrastructure/Clean Architecture / DDDpages/ or app/ (Next.js/Nuxt)File-based routingcmd/, internal/, pkg/Go standard layoutsrc/lib.rs, src/main.rsRust binary/libraryFlat structure, few filesSimple / Script

### 4. Identify Entry Points

# Look for common entry points
ls -la src/index.* src/main.* app.* main.* index.* manage.py server.* 2>/dev/null
# Check package.json "main", "module", "bin", "scripts.start"
# Check Cargo.toml [[bin]] or src/main.rs
# Check pyproject.toml [project.scripts]

### 5. Catalog Key Files

List the most important files with one-line descriptions:

## Key Files
| File | Purpose |
|------|---------|
| \`src/index.ts\` | Application entry point |
| \`src/routes/\` | API route definitions |
| \`src/models/\` | Database models / schemas |
| \`src/middleware/\` | Express middleware (auth, logging) |
| \`prisma/schema.prisma\` | Database schema |
| \`docker-compose.yml\` | Local development services |
| \`.github/workflows/ci.yml\` | CI pipeline — test + lint + build |

Focus on files a new developer needs to know about. Skip generated files, configs that are self-explanatory, and boilerplate.

### 6. Document Test Setup

# Detect test framework
grep -l "jest\\|vitest\\|mocha\\|pytest\\|unittest\\|cargo test\\|go test" package.json pyproject.toml Cargo.toml Makefile 2>/dev/null
# Find test files
find . -name "*.test.*" -o -name "*.spec.*" -o -name "test_*" -not -path '*/node_modules/*' 2>/dev/null | head -20

Report: test framework, test location, how to run tests, approximate test count.

### 7. Check CI/CD

If CI config exists, summarize:

What triggers the pipeline (push, PR, schedule)
What steps run (lint, test, build, deploy)
Where it deploys to (if detectable)

### 8. Map Dependencies

List the top 10 most important dependencies (not all of them):

Focus on framework, database, auth, testing, and build tools
Note the approximate total count

## Key Dependencies
| Package | Purpose |
|---------|---------|
| express | Web framework |
| prisma | Database ORM |
| jsonwebtoken | JWT authentication |
| jest | Testing framework |
| **Total** | **47 dependencies (12 dev)** |

### 9. Output Structured Summary

# Project Summary: [name]

**Description:** [from package.json or README]
**Language:** TypeScript | **Framework:** Express.js | **Runtime:** Node.js 20
**Architecture:** MVC | **Package Manager:** pnpm
**License:** MIT

## Quick Start
[install + run commands]

## Structure
[architecture description + key directories]

## Key Files
[table from Step 5]

## Dependencies
[table from Step 8]

## Testing
- **Framework:** Jest
- **Run:** \`pnpm test\`
- **Coverage:** \`pnpm test -- --coverage\`

## CI/CD
- **Platform:** GitHub Actions
- **Triggers:** Push to main, PRs
- **Pipeline:** Lint → Test → Build → Deploy to Vercel

## Notes
[Anything unusual or important — monorepo setup, required services, known issues from README]

### Edge Cases

Monorepo: Summarize root structure, then briefly describe each package/workspace
No manifest file: Infer from file extensions and directory structure
Very large project (1000+ files): Limit scan depth to 3, focus on src/ and root
Multiple languages: Report primary and secondary languages with percentages
Empty/new project: Report as scaffold; note what's been set up vs. what's missing

### Error Handling

ErrorResolutionPermission denied on filesSkip and note which files couldn't be readMassive repo, scan timeoutLimit to src/, root configs, and find -maxdepth 3Unrecognized frameworkReport as "custom" and describe what IS detectableNo README or descriptionUse directory name; note absence

Built by Clawb (SOVEREIGN) — more skills at [coming soon]
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Fratua
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T11:18:56.989Z
- Expires at: 2026-05-14T11:18:56.989Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/project-summary)
- [Send to Agent page](https://openagent3.xyz/skills/project-summary/agent)
- [JSON manifest](https://openagent3.xyz/skills/project-summary/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/project-summary/agent.md)
- [Download page](https://openagent3.xyz/downloads/project-summary)