{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/django-claw-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=django-claw-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/db-stats.sh",
      "scripts/django-logs.sh",
      "scripts/list-apps.sh",
      "scripts/list-models.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/django-claw-skill",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "django-claw",
        "body": "⚠️ This is the canonical django skill. Always use django-claw commands. Never use django-manage."
      },
      {
        "title": "CRITICAL: Command Dispatch Rules",
        "body": "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.\n\ndjango-claw readonly → ALWAYS runs readonly.sh — NOT db-stats.sh, NOT any other script\ndjango-claw readonly on → ALWAYS runs readonly.sh on — do NOT just describe what it would do\ndjango-claw readonly off → ALWAYS runs readonly.sh off — do NOT just describe what it would do\ndjango-claw logs → ALWAYS runs django-logs.sh — do NOT say \"I don't have a log command\"\ndjango-claw shell: <code> → ALWAYS runs run-query.sh \"<code>\" — do NOT run it yourself"
      },
      {
        "title": "STRICT RULES — never violate these",
        "body": "NEVER run python --version or python3 --version directly — ALWAYS use python-version.sh\nNEVER construct your own shell commands\nNEVER use python or python3 directly — always use the exact scripts below\nNEVER escape quotes or build commands with variables\nNEVER run destructive commands (flush, reset_db, dropdb) without explicit user confirmation\nNEVER attempt migrate, makemigrations, or shell when read-only mode is enabled — the scripts will block these\nNEVER substitute one script for another — readonly.sh is NOT db-stats.sh\nNEVER describe or simulate what a command would do — always run the actual script\nIf the user asks for something NOT in the command mapping, reply: \"Not supported yet in django-claw\""
      },
      {
        "title": "Command Mapping — use EXACTLY as shown",
        "body": "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"
      },
      {
        "title": "Migration commands explained",
        "body": "django-claw pending — shows only unapplied migrations (quick check)\ndjango-claw showmigrations — shows ALL migrations with [X] applied and [ ] pending (full history)\ndjango-claw migrate — applies pending migrations (blocked in read-only mode)\ndjango-claw makemigrations — creates new migrations (blocked in read-only mode)"
      },
      {
        "title": "Output format",
        "body": "Return raw script output in a code block. Follow with one plain-English summary line."
      },
      {
        "title": "Failure handling",
        "body": "If a script exits non-zero, show the exact error. Do not retry with a modified command.\nIf config is missing, the setup wizard will run automatically. Do not intervene.\nIf a command is blocked by read-only mode, show the ⛔ message and stop. Do not try to work around it."
      }
    ],
    "body": "django-claw\n\n⚠️ This is the canonical django skill. Always use django-claw commands. Never use django-manage.\n\nCRITICAL: Command Dispatch Rules\n\nYou 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.\n\ndjango-claw readonly → ALWAYS runs readonly.sh — NOT db-stats.sh, NOT any other script\ndjango-claw readonly on → ALWAYS runs readonly.sh on — do NOT just describe what it would do\ndjango-claw readonly off → ALWAYS runs readonly.sh off — do NOT just describe what it would do\ndjango-claw logs → ALWAYS runs django-logs.sh — do NOT say \"I don't have a log command\"\ndjango-claw shell: <code> → ALWAYS runs run-query.sh \"<code>\" — do NOT run it yourself\nSTRICT RULES — never violate these\nNEVER run python --version or python3 --version directly — ALWAYS use python-version.sh\nNEVER construct your own shell commands\nNEVER use python or python3 directly — always use the exact scripts below\nNEVER escape quotes or build commands with variables\nNEVER run destructive commands (flush, reset_db, dropdb) without explicit user confirmation\nNEVER attempt migrate, makemigrations, or shell when read-only mode is enabled — the scripts will block these\nNEVER substitute one script for another — readonly.sh is NOT db-stats.sh\nNEVER describe or simulate what a command would do — always run the actual script\nIf the user asks for something NOT in the command mapping, reply: \"Not supported yet in django-claw\"\nCommand Mapping — use EXACTLY as shown\nUser Says\tExact Command to Run\ndjango-claw setup\tbash {baseDir}/scripts/setup.sh\ndjango-claw models\tbash {baseDir}/scripts/list-models.sh\ndjango-claw apps\tbash {baseDir}/scripts/list-apps.sh\ndjango-claw urls\tbash {baseDir}/scripts/list-urls.sh\ndjango-claw users\tbash {baseDir}/scripts/list-users.sh\ndjango-claw db\tbash {baseDir}/scripts/db-stats.sh\ndjango-claw pending\tbash {baseDir}/scripts/pending-migrations.sh\ndjango-claw settings\tbash {baseDir}/scripts/settings-check.sh\ndjango-claw showmigrations\tbash {baseDir}/scripts/run.sh showmigrations\ndjango-claw makemigrations\tbash {baseDir}/scripts/run.sh makemigrations\ndjango-claw migrate\tbash {baseDir}/scripts/run.sh migrate\ndjango-claw version\tbash {baseDir}/scripts/run.sh version\ndjango-claw check\tbash {baseDir}/scripts/run.sh check\ndjango-claw python\tbash {baseDir}/scripts/python-version.sh\ndjango-claw logs\tbash {baseDir}/scripts/django-logs.sh\ndjango-claw shell: <code>\tbash {baseDir}/scripts/run-query.sh \"<code>\"\ndjango-claw readonly\tbash {baseDir}/scripts/readonly.sh\ndjango-claw readonly on\tbash {baseDir}/scripts/readonly.sh on\ndjango-claw readonly off\tbash {baseDir}/scripts/readonly.sh off\nMigration commands explained\ndjango-claw pending — shows only unapplied migrations (quick check)\ndjango-claw showmigrations — shows ALL migrations with [X] applied and [ ] pending (full history)\ndjango-claw migrate — applies pending migrations (blocked in read-only mode)\ndjango-claw makemigrations — creates new migrations (blocked in read-only mode)\nOutput format\n\nReturn raw script output in a code block. Follow with one plain-English summary line.\n\nFailure handling\nIf a script exits non-zero, show the exact error. Do not retry with a modified command.\nIf config is missing, the setup wizard will run automatically. Do not intervene.\nIf a command is blocked by read-only mode, show the ⛔ message and stop. Do not try to work around it."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/manojrammurthy/django-claw-skill",
    "publisherUrl": "https://clawhub.ai/manojrammurthy/django-claw-skill",
    "owner": "manojrammurthy",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}