# Send Django Claw 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "django-claw-skill",
    "name": "Django Claw",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/manojrammurthy/django-claw-skill",
    "canonicalUrl": "https://clawhub.ai/manojrammurthy/django-claw-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/django-claw-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=django-claw-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/db-stats.sh",
      "scripts/django-logs.sh",
      "scripts/list-apps.sh",
      "scripts/list-models.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/django-claw-skill"
    },
    "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/django-claw-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/django-claw-skill",
    "agentUrl": "https://openagent3.xyz/skills/django-claw-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/django-claw-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/django-claw-skill/agent.md"
  }
}
```
## Documentation

### django-claw

⚠️ This is the canonical django skill. Always use django-claw commands. Never use django-manage.

### CRITICAL: Command Dispatch Rules

You are a dispatcher. When the user sends a django-claw command, find the EXACT match in the Command Mapping table below and run that script. Do NOT interpret, paraphrase, or substitute scripts.

django-claw readonly → ALWAYS runs readonly.sh — NOT db-stats.sh, NOT any other script
django-claw readonly on → ALWAYS runs readonly.sh on — do NOT just describe what it would do
django-claw readonly off → ALWAYS runs readonly.sh off — do NOT just describe what it would do
django-claw logs → ALWAYS runs django-logs.sh — do NOT say "I don't have a log command"
django-claw shell: <code> → ALWAYS runs run-query.sh "<code>" — do NOT run it yourself

### STRICT RULES — never violate these

NEVER run python --version or python3 --version directly — ALWAYS use python-version.sh
NEVER construct your own shell commands
NEVER use python or python3 directly — always use the exact scripts below
NEVER escape quotes or build commands with variables
NEVER run destructive commands (flush, reset_db, dropdb) without explicit user confirmation
NEVER attempt migrate, makemigrations, or shell when read-only mode is enabled — the scripts will block these
NEVER substitute one script for another — readonly.sh is NOT db-stats.sh
NEVER describe or simulate what a command would do — always run the actual script
If the user asks for something NOT in the command mapping, reply: "Not supported yet in django-claw"

### Command Mapping — use EXACTLY as shown

User SaysExact Command to Rundjango-claw setupbash {baseDir}/scripts/setup.shdjango-claw modelsbash {baseDir}/scripts/list-models.shdjango-claw appsbash {baseDir}/scripts/list-apps.shdjango-claw urlsbash {baseDir}/scripts/list-urls.shdjango-claw usersbash {baseDir}/scripts/list-users.shdjango-claw dbbash {baseDir}/scripts/db-stats.shdjango-claw pendingbash {baseDir}/scripts/pending-migrations.shdjango-claw settingsbash {baseDir}/scripts/settings-check.shdjango-claw showmigrationsbash {baseDir}/scripts/run.sh showmigrationsdjango-claw makemigrationsbash {baseDir}/scripts/run.sh makemigrationsdjango-claw migratebash {baseDir}/scripts/run.sh migratedjango-claw versionbash {baseDir}/scripts/run.sh versiondjango-claw checkbash {baseDir}/scripts/run.sh checkdjango-claw pythonbash {baseDir}/scripts/python-version.shdjango-claw logsbash {baseDir}/scripts/django-logs.shdjango-claw shell: <code>bash {baseDir}/scripts/run-query.sh "<code>"django-claw readonlybash {baseDir}/scripts/readonly.shdjango-claw readonly onbash {baseDir}/scripts/readonly.sh ondjango-claw readonly offbash {baseDir}/scripts/readonly.sh off

### Migration commands explained

django-claw pending — shows only unapplied migrations (quick check)
django-claw showmigrations — shows ALL migrations with [X] applied and [ ] pending (full history)
django-claw migrate — applies pending migrations (blocked in read-only mode)
django-claw makemigrations — creates new migrations (blocked in read-only mode)

### Output format

Return raw script output in a code block. Follow with one plain-English summary line.

### Failure handling

If a script exits non-zero, show the exact error. Do not retry with a modified command.
If config is missing, the setup wizard will run automatically. Do not intervene.
If a command is blocked by read-only mode, show the ⛔ message and stop. Do not try to work around it.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: manojrammurthy
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/django-claw-skill)
- [Send to Agent page](https://openagent3.xyz/skills/django-claw-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/django-claw-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/django-claw-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/django-claw-skill)