{
  "schemaVersion": "1.0",
  "item": {
    "slug": "atris",
    "name": "Atris",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/keshav55/atris",
    "canonicalUrl": "https://clawhub.ai/keshav55/atris",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/atris",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=atris",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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. 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. 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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/atris"
    },
    "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/atris",
    "agentPageUrl": "https://openagent3.xyz/skills/atris/agent",
    "manifestUrl": "https://openagent3.xyz/skills/atris/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/atris/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Atris — Codebase Intelligence",
        "body": "Maintain a structured map of the codebase with exact file:line references. One scan, permanent knowledge. Saves 80-95% of tokens on code exploration."
      },
      {
        "title": "Scope",
        "body": "Use in any repo where you need to navigate code.\nCreates atris/MAP.md as the single navigation index."
      },
      {
        "title": "MAP-first rule",
        "body": "Before searching for anything in the codebase:\n\nRead atris/MAP.md\nFound your keyword → go directly to file:line. Done.\nNot found → search once with rg, then add the result to MAP.md\n\nThe map gets smarter every time you use it. Never let a discovery go unrecorded."
      },
      {
        "title": "First time setup",
        "body": "If atris/MAP.md doesn't exist, generate it:\n\nCreate atris/ folder in the project root\nScan the codebase (rules below)\nWrite the result to atris/MAP.md\nTell the user: \"Built your codebase map at atris/MAP.md.\"\n\nIf atris/MAP.md already exists, use it. Regenerate only if the user requests it or the map is clearly stale (references missing files, line numbers way off)."
      },
      {
        "title": "How to scan",
        "body": "Skip: node_modules, .git, dist, build, vendor, __pycache__, .venv, .env*, *.key, *.pem, credentials*, secrets*\n\nUse ripgrep to extract structure:\n\n# Key definitions\nrg \"^(export|function|class|const|def |async def |router\\.|app\\.|@app\\.)\" --line-number -g \"!node_modules\" -g \"!.git\" -g \"!dist\" -g \"!.env*\"\n\n# Route definitions\nrg \"(get|post|put|delete|patch)\\s*\\(\" --line-number -g \"*.ts\" -g \"*.js\" -g \"*.py\"\n\n# Entry points\nrg \"listen|createServer|app\\.start|if __name__\" --line-number"
      },
      {
        "title": "MAP.md structure",
        "body": "# MAP.md — [Project Name] Navigation Guide\n\n> Generated by Atris | Last updated: YYYY-MM-DD\n\n## Quick Reference\n\nrg \"functionName\" path/to/file.ext    # Description (line N)\nrg \"className\" path/to/file.ext       # Description (line N)\n\nExtract the top 15-25 most important symbols: entry points, exports, route handlers, main classes, config loaders."
      },
      {
        "title": "By-Feature Map",
        "body": "Group code by what it does. Every reference includes exact file path and line numbers.\n\n### Feature: User Authentication\n**Purpose:** Login, registration, token management\n- **Entry:** `src/auth/login.ts:45-89` (handleLogin)\n- **Validation:** `src/auth/validate.ts:12-67` (validateToken)\n- **Model:** `src/models/user.ts:8-34` (User schema)\n- **Routes:** `src/routes/auth.ts:5-28` (POST /login, POST /register)"
      },
      {
        "title": "By-Concern Map",
        "body": "Group by cross-cutting patterns (error handling, logging, auth middleware, etc)."
      },
      {
        "title": "Critical Files",
        "body": "Flag high-impact files with why they matter and key functions with line numbers."
      },
      {
        "title": "Entry Points",
        "body": "How execution flows — dev server startup, request lifecycle, build pipeline."
      },
      {
        "title": "Keeping it fresh",
        "body": "Update MAP.md surgically when the codebase changes:\n\nNew file → add to relevant section\nMoved/renamed → update all references\nNew important function → add to Quick Reference\nDeleted file → remove from map\nMajor refactor → regenerate affected sections\n\nSmall updates, not full regeneration. The map evolves with the code."
      },
      {
        "title": "Anti-patterns",
        "body": "Searching without checking MAP first\nLetting discoveries go unrecorded\nRegenerating the full map when a surgical update would do\nIncluding secrets, credentials, or .env files in the map\nGuessing file locations instead of using the index"
      }
    ],
    "body": "Atris — Codebase Intelligence\n\nMaintain a structured map of the codebase with exact file:line references. One scan, permanent knowledge. Saves 80-95% of tokens on code exploration.\n\nScope\nUse in any repo where you need to navigate code.\nCreates atris/MAP.md as the single navigation index.\nMAP-first rule\n\nBefore searching for anything in the codebase:\n\nRead atris/MAP.md\nFound your keyword → go directly to file:line. Done.\nNot found → search once with rg, then add the result to MAP.md\n\nThe map gets smarter every time you use it. Never let a discovery go unrecorded.\n\nFirst time setup\n\nIf atris/MAP.md doesn't exist, generate it:\n\nCreate atris/ folder in the project root\nScan the codebase (rules below)\nWrite the result to atris/MAP.md\nTell the user: \"Built your codebase map at atris/MAP.md.\"\n\nIf atris/MAP.md already exists, use it. Regenerate only if the user requests it or the map is clearly stale (references missing files, line numbers way off).\n\nHow to scan\n\nSkip: node_modules, .git, dist, build, vendor, __pycache__, .venv, .env*, *.key, *.pem, credentials*, secrets*\n\nUse ripgrep to extract structure:\n\n# Key definitions\nrg \"^(export|function|class|const|def |async def |router\\.|app\\.|@app\\.)\" --line-number -g \"!node_modules\" -g \"!.git\" -g \"!dist\" -g \"!.env*\"\n\n# Route definitions\nrg \"(get|post|put|delete|patch)\\s*\\(\" --line-number -g \"*.ts\" -g \"*.js\" -g \"*.py\"\n\n# Entry points\nrg \"listen|createServer|app\\.start|if __name__\" --line-number\n\nMAP.md structure\n# MAP.md — [Project Name] Navigation Guide\n\n> Generated by Atris | Last updated: YYYY-MM-DD\n\n## Quick Reference\n\nrg \"functionName\" path/to/file.ext    # Description (line N)\nrg \"className\" path/to/file.ext       # Description (line N)\n\n\nExtract the top 15-25 most important symbols: entry points, exports, route handlers, main classes, config loaders.\n\nBy-Feature Map\n\nGroup code by what it does. Every reference includes exact file path and line numbers.\n\n### Feature: User Authentication\n**Purpose:** Login, registration, token management\n- **Entry:** `src/auth/login.ts:45-89` (handleLogin)\n- **Validation:** `src/auth/validate.ts:12-67` (validateToken)\n- **Model:** `src/models/user.ts:8-34` (User schema)\n- **Routes:** `src/routes/auth.ts:5-28` (POST /login, POST /register)\n\nBy-Concern Map\n\nGroup by cross-cutting patterns (error handling, logging, auth middleware, etc).\n\nCritical Files\n\nFlag high-impact files with why they matter and key functions with line numbers.\n\nEntry Points\n\nHow execution flows — dev server startup, request lifecycle, build pipeline.\n\nKeeping it fresh\n\nUpdate MAP.md surgically when the codebase changes:\n\nNew file → add to relevant section\nMoved/renamed → update all references\nNew important function → add to Quick Reference\nDeleted file → remove from map\nMajor refactor → regenerate affected sections\n\nSmall updates, not full regeneration. The map evolves with the code.\n\nAnti-patterns\nSearching without checking MAP first\nLetting discoveries go unrecorded\nRegenerating the full map when a surgical update would do\nIncluding secrets, credentials, or .env files in the map\nGuessing file locations instead of using the index"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/keshav55/atris",
    "publisherUrl": "https://clawhub.ai/keshav55/atris",
    "owner": "keshav55",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/atris",
    "downloadUrl": "https://openagent3.xyz/downloads/atris",
    "agentUrl": "https://openagent3.xyz/skills/atris/agent",
    "manifestUrl": "https://openagent3.xyz/skills/atris/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/atris/agent.md"
  }
}