{
  "schemaVersion": "1.0",
  "item": {
    "slug": "quick-test",
    "name": "Quick Test",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/GustavoZiaugra/quick-test",
    "canonicalUrl": "https://clawhub.ai/GustavoZiaugra/quick-test",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/quick-test",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=quick-test",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/run_tests.py"
    ],
    "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",
      "slug": "quick-test",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T18:53:57.234Z",
      "expiresAt": "2026-05-14T18:53:57.234Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=quick-test",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=quick-test",
        "contentDisposition": "attachment; filename=\"quick-test-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "quick-test"
      },
      "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/quick-test"
    },
    "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/quick-test",
    "agentPageUrl": "https://openagent3.xyz/skills/quick-test/agent",
    "manifestUrl": "https://openagent3.xyz/skills/quick-test/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/quick-test/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": "Overview / Visão Geral",
        "body": "Simple system test to verify OpenClaw environment. Run basic commands and validate output.\n\nTeste de sistema simples para verificar o ambiente do OpenClaw. Rode comandos básicos e valide a saída."
      },
      {
        "title": "Quick Start / Início Rápido",
        "body": "# Run all tests\npython3 scripts/run_tests.py\n\n# Run specific test\npython3 scripts/run_tests.py --test date\npython3 scripts/run_tests.py --test files\n\n# Test with custom command\npython3 scripts/run_tests.py --command \"echo 'Hello World'\""
      },
      {
        "title": "Installation / Instalação",
        "body": "Clone this repository / Clone este repositório:\n\ngit clone https://github.com/GustavoZiaugra/quick-test-skill.git\ncd quick-test-skill\n\nNo dependencies required / Sem dependências necessárias\n\nUses only Python standard library\nNão requer dependências externas"
      },
      {
        "title": "Run All Tests / Rodar Todos os Testes",
        "body": "python3 scripts/run_tests.py\n\nThis will:\n\nCheck Python availability\nVerify current working directory\nTest file system access\nRun system commands\nValidate all outputs\n\nIsso irá:\n\nVerificar disponibilidade do Python\nConfirmar diretório de trabalho atual\nTestar acesso ao sistema de arquivos\nRodar comandos do sistema\nValidar todas as saídas"
      },
      {
        "title": "Run Specific Test / Rodar Test Específico",
        "body": "# Test date functionality\npython3 scripts/run_tests.py --test date\n\n# Test file system\npython3 scripts/run_tests.py --test files\n\n# Run custom command\npython3 scripts/run_tests.py --command \"pwd\""
      },
      {
        "title": "Parameters / Parâmetros",
        "body": "ParameterDescriptionDescriçãoDefault--testSpecific test to run / Teste específico para rodarall--test date--commandCustom command to execute / Comando customizado para executarnone--command \"ls -la\"--quietSuppress output / Suprimir saídafalse--quiet"
      },
      {
        "title": "Output Format / Formato de Saída",
        "body": "✅ Quick Test Results\n\nSystem Status: OK\nPython: 3.12.7\nWorking Directory: /home/zig/.openclaw/workspace\n\nTests Run: 3/3 Passed\n[✓] Python test\n[✓] Date test\n[✓] File system test\n\nAll tests passed successfully!"
      },
      {
        "title": "Features / Funcionalidades",
        "body": "✅ Python Availability Check / Verificação de Disponibilidade do Python - Confirms Python 3.x installed\n✅ System Command Execution / Execução de Comando do Sistema - Runs and validates system commands\n✅ File System Access / Acesso ao Sistema de Arquivos - Verifies directory access and permissions\n✅ Custom Command Support / Suporte a Comandos Customizados - Run any command with validation\n✅ Working Directory Check / Verificação de Diretório de Trabalho - Confirms current location\n📝 Detailed Logging / Log Detalhado - Comprehensive output for debugging"
      },
      {
        "title": "How It Works / Como Funciona",
        "body": "System Check / Verificação de Sistema - Verifies Python and OS environment\nDirectory Check / Verificação de Diretório - Validates working directory permissions\nTest Execution / Execução do Teste - Runs requested tests\nValidation / Validação - Checks outputs and returns\nReporting / Relatório - Formats clear success/failure messages"
      },
      {
        "title": "System Verification / Verificação do Sistema",
        "body": "Confirm OpenClaw is running correctly:\n\npython3 scripts/run_tests.py --test date --test files --test command"
      },
      {
        "title": "Debugging Commands / Comandos de Debugging",
        "body": "Run specific system commands:\n\npython3 scripts/run_tests.py --command \"pwd\"\npython3 scripts/run_tests.py --command \"ls -la\"\npython3 scripts/run_tests.py --command \"env | head -10\""
      },
      {
        "title": "Before/After Testing / Antes/Depois de Testar",
        "body": "Use Quick Test to verify system before/after:\n\n# Before installing a skill\npython3 scripts/run_tests.py\n\n# After installing a skill\npython3 scripts/run_tests.py"
      },
      {
        "title": "Basic Test / Teste Básico",
        "body": "# Check if everything works\npython3 scripts/run_tests.py\n\nOutput:\n\n✅ Quick Test - System Verification\n\nEnvironment Check:\n✓ Python 3.12.7\n✓ Linux Ubuntu\n✓ User: zig\n✓ Working Directory: /home/zig/.openclaw/workspace\n\nTests:\n[✓] Command: `pwd` → Passed\n[✓] Command: `ls -la` → Passed\n[✓] Command: `date` → Passed\n\nAll tests passed!"
      },
      {
        "title": "Custom Command / Comando Customizado",
        "body": "# Run a specific command\npython3 scripts/run_tests.py --command \"echo 'Custom test'\"\n\nOutput:\n\nCustom Command: echo 'Custom test'\nResult: ✅ Passed\nOutput: Custom test"
      },
      {
        "title": "Success Indicators / Indicadores de Sucesso",
        "body": "✅ All tests passed - System is working correctly / Sistema funcionando corretamente\n⚠️ Some tests failed - Minor issues detected / Problemas menores detectados\n❌ Critical failures - System issues requiring attention / Problemas de sistema requerendo atenção"
      },
      {
        "title": "Common Test Failures / Falhas Comuns de Teste",
        "body": "Permission Denied: pwd or ls returns errors\n\nCheck user permissions / Verifique permissões do usuário\nVerify directory access / Confirme acesso ao diretório\n\nCommand Not Found: Custom command not executable\n\nVerify command exists / Verifique se o comando existe\nCheck PATH / Verifique o PATH\n\nDirectory Not Found: Working directory check fails\n\nVerify path / Verifique o caminho\nCheck permissions / Verifique permissões"
      },
      {
        "title": "scripts/run_tests.py",
        "body": "Main test runner script.\nScript principal de execução dos testes."
      },
      {
        "title": "scripts/tests.py",
        "body": "Test suite with individual test functions.\nSuíte de testes com funções de testes individuais."
      },
      {
        "title": "scripts/system_check.py",
        "body": "System validation functions.\nFunções de validação do sistema."
      },
      {
        "title": "Philosophy / Filosofia",
        "body": "Keep It Simple / Mantenha Simples\n\nTest core functionality only\nAvoid complex dependencies / Evite dependências complexas\nClear, readable output / Saída clara e legível\n\nFast Feedback / Feedback Rápido\n\nShow results immediately / Mostre resultados imediatamente\nPass/fail clear / Sucesso/Falha claro\nNo waiting or timeout / Sem espera ou timeout\n\nDebugging Friendly / Amigável para Debugging\n\nDetailed error messages / Mensagens de erro detalhadas\nSystem information included / Informações do sistema incluídas\nSuggest fixes / Sugere correções"
      },
      {
        "title": "scripts/run_tests.py",
        "body": "Main runner script that executes all tests and formats results.\nScript principal que executa todos os testes e formata os resultados."
      },
      {
        "title": "scripts/tests.py",
        "body": "Individual test functions for system verification.\nFunções de teste individuais para verificação do sistema."
      },
      {
        "title": "scripts/system_check.py",
        "body": "System validation and environment check functions.\nFunções de validação e verificação de ambiente do sistema."
      },
      {
        "title": "Dependencies / Dependências",
        "body": "None! / Nenhuma!\n\nUses only Python standard library (sys, os, subprocess, datetime, json, pathlib).\nUsa apenas biblioteca padrão do Python (sys, os, subprocess, datetime, json, pathlib)."
      },
      {
        "title": "Limitations / Limitações",
        "body": "User Permissions: Requires read and execute access to directories\n\nPermissões do Usuário: Requer acesso de leitura e execução a diretórios\nSystem commands must be in PATH / Comandos do sistema devem estar no PATH\n\nSystem Differences: Behavior may vary by OS (Linux, macOS, Windows)\n\nDiferenças do Sistema: Comportamento pode variar por sistema operacional (Linux, macOS, Windows)"
      },
      {
        "title": "Tests Fail / Testes Falhando",
        "body": "If tests fail:\n\nCheck permissions / Verifique permissões - Ensure user has read/write access\nVerify Python / Confirme Python - Test python3 --version\nCheck commands / Verifique comandos - Ensure basic commands exist\nReview logs / Revise logs - Look for specific error messages"
      },
      {
        "title": "Command Not Executing / Comando Não Executando",
        "body": "If a custom command returns nothing or errors:\n\nVerify command exists / Verifique se o comando existe - Use which or whereis\nTest directly / Teste diretamente - Run command outside of this skill\nCheck PATH / Verifique o PATH - Ensure command is in system PATH"
      },
      {
        "title": "Python Not Found / Python Não Encontrado",
        "body": "If Python test fails:\n\nCheck Python version / Verifique versão do Python - Requires 3.7+\nVerify installation / Confirme instalação - Check which python3\nReinstall if needed / Reinstale se necessário - See Python documentation"
      },
      {
        "title": "License / Licença",
        "body": "MIT License - Use freely for personal and commercial purposes.\nLicença MIT - Use livremente para fins pessoais e comerciais."
      },
      {
        "title": "Credits / Créditos",
        "body": "Created by Gustavo (GustavoZiaugra) with OpenClaw\nCriado por Gustavo (GustavoZiaugra) com OpenClaw\n\nSimple system testing / Teste de sistema simples\nPython environment verification / Verificação de ambiente Python\nCommand validation / Validação de comandos\nDebug-friendly output / Saída amigável para debug\n\nFind this and more OpenClaw skills at ClawHub.com\nEncontre este e mais habilidades do OpenClaw em ClawHub.com\n\n⭐ Star this repository if you find it useful!\n⭐ Dê uma estrela neste repositório se você achar útil!\n\n✅ Simple, fast, no dependencies / Simples, rápido, sem dependências - Works everywhere, tests everything / Funciona em qualquer lugar, testa tudo / Test everywhere"
      }
    ],
    "body": "Quick Test\nOverview / Visão Geral\n\nSimple system test to verify OpenClaw environment. Run basic commands and validate output.\n\nTeste de sistema simples para verificar o ambiente do OpenClaw. Rode comandos básicos e valide a saída.\n\nQuick Start / Início Rápido\n# Run all tests\npython3 scripts/run_tests.py\n\n# Run specific test\npython3 scripts/run_tests.py --test date\npython3 scripts/run_tests.py --test files\n\n# Test with custom command\npython3 scripts/run_tests.py --command \"echo 'Hello World'\"\n\nInstallation / Instalação\nClone this repository / Clone este repositório:\ngit clone https://github.com/GustavoZiaugra/quick-test-skill.git\ncd quick-test-skill\n\nNo dependencies required / Sem dependências necessárias\nUses only Python standard library\nNão requer dependências externas\nUsage / Uso\nRun All Tests / Rodar Todos os Testes\npython3 scripts/run_tests.py\n\n\nThis will:\n\nCheck Python availability\nVerify current working directory\nTest file system access\nRun system commands\nValidate all outputs\n\nIsso irá:\n\nVerificar disponibilidade do Python\nConfirmar diretório de trabalho atual\nTestar acesso ao sistema de arquivos\nRodar comandos do sistema\nValidar todas as saídas\nRun Specific Test / Rodar Test Específico\n# Test date functionality\npython3 scripts/run_tests.py --test date\n\n# Test file system\npython3 scripts/run_tests.py --test files\n\n# Run custom command\npython3 scripts/run_tests.py --command \"pwd\"\n\nParameters / Parâmetros\nParameter\tDescription\tDescrição\tDefault\n--test\tSpecific test to run / Teste específico para rodar\tall\t--test date\n--command\tCustom command to execute / Comando customizado para executar\tnone\t--command \"ls -la\"\n--quiet\tSuppress output / Suprimir saída\tfalse\t--quiet\nOutput Format / Formato de Saída\n✅ Quick Test Results\n\nSystem Status: OK\nPython: 3.12.7\nWorking Directory: /home/zig/.openclaw/workspace\n\nTests Run: 3/3 Passed\n[✓] Python test\n[✓] Date test\n[✓] File system test\n\nAll tests passed successfully!\n\nFeatures / Funcionalidades\n✅ Python Availability Check / Verificação de Disponibilidade do Python - Confirms Python 3.x installed\n✅ System Command Execution / Execução de Comando do Sistema - Runs and validates system commands\n✅ File System Access / Acesso ao Sistema de Arquivos - Verifies directory access and permissions\n✅ Custom Command Support / Suporte a Comandos Customizados - Run any command with validation\n✅ Working Directory Check / Verificação de Diretório de Trabalho - Confirms current location\n📝 Detailed Logging / Log Detalhado - Comprehensive output for debugging\nHow It Works / Como Funciona\nSystem Check / Verificação de Sistema - Verifies Python and OS environment\nDirectory Check / Verificação de Diretório - Validates working directory permissions\nTest Execution / Execução do Teste - Runs requested tests\nValidation / Validação - Checks outputs and returns\nReporting / Relatório - Formats clear success/failure messages\nUse Cases / Casos de Uso\nSystem Verification / Verificação do Sistema\n\nConfirm OpenClaw is running correctly:\n\npython3 scripts/run_tests.py --test date --test files --test command\n\nDebugging Commands / Comandos de Debugging\n\nRun specific system commands:\n\npython3 scripts/run_tests.py --command \"pwd\"\npython3 scripts/run_tests.py --command \"ls -la\"\npython3 scripts/run_tests.py --command \"env | head -10\"\n\nBefore/After Testing / Antes/Depois de Testar\n\nUse Quick Test to verify system before/after:\n\n# Before installing a skill\npython3 scripts/run_tests.py\n\n# After installing a skill\npython3 scripts/run_tests.py\n\nExamples / Exemplos\nBasic Test / Teste Básico\n# Check if everything works\npython3 scripts/run_tests.py\n\n\nOutput:\n\n✅ Quick Test - System Verification\n\nEnvironment Check:\n✓ Python 3.12.7\n✓ Linux Ubuntu\n✓ User: zig\n✓ Working Directory: /home/zig/.openclaw/workspace\n\nTests:\n[✓] Command: `pwd` → Passed\n[✓] Command: `ls -la` → Passed\n[✓] Command: `date` → Passed\n\nAll tests passed!\n\nCustom Command / Comando Customizado\n# Run a specific command\npython3 scripts/run_tests.py --command \"echo 'Custom test'\"\n\n\nOutput:\n\nCustom Command: echo 'Custom test'\nResult: ✅ Passed\nOutput: Custom test\n\nTesting Results / Resultados dos Testes\nSuccess Indicators / Indicadores de Sucesso\n✅ All tests passed - System is working correctly / Sistema funcionando corretamente\n⚠️ Some tests failed - Minor issues detected / Problemas menores detectados\n❌ Critical failures - System issues requiring attention / Problemas de sistema requerendo atenção\nCommon Test Failures / Falhas Comuns de Teste\n\nPermission Denied: pwd or ls returns errors\n\nCheck user permissions / Verifique permissões do usuário\nVerify directory access / Confirme acesso ao diretório\n\nCommand Not Found: Custom command not executable\n\nVerify command exists / Verifique se o comando existe\nCheck PATH / Verifique o PATH\n\nDirectory Not Found: Working directory check fails\n\nVerify path / Verifique o caminho\nCheck permissions / Verifique permissões\nScripts Included / Scripts Incluídos\nscripts/run_tests.py\n\nMain test runner script. Script principal de execução dos testes.\n\nscripts/tests.py\n\nTest suite with individual test functions. Suíte de testes com funções de testes individuais.\n\nscripts/system_check.py\n\nSystem validation functions. Funções de validação do sistema.\n\nPhilosophy / Filosofia\n\nKeep It Simple / Mantenha Simples\n\nTest core functionality only\nAvoid complex dependencies / Evite dependências complexas\nClear, readable output / Saída clara e legível\n\nFast Feedback / Feedback Rápido\n\nShow results immediately / Mostre resultados imediatamente\nPass/fail clear / Sucesso/Falha claro\nNo waiting or timeout / Sem espera ou timeout\n\nDebugging Friendly / Amigável para Debugging\n\nDetailed error messages / Mensagens de erro detalhadas\nSystem information included / Informações do sistema incluídas\nSuggest fixes / Sugere correções\nResources / Recursos\nscripts/run_tests.py\n\nMain runner script that executes all tests and formats results. Script principal que executa todos os testes e formata os resultados.\n\nscripts/tests.py\n\nIndividual test functions for system verification. Funções de teste individuais para verificação do sistema.\n\nscripts/system_check.py\n\nSystem validation and environment check functions. Funções de validação e verificação de ambiente do sistema.\n\nDependencies / Dependências\n\nNone! / Nenhuma!\n\nUses only Python standard library (sys, os, subprocess, datetime, json, pathlib). Usa apenas biblioteca padrão do Python (sys, os, subprocess, datetime, json, pathlib).\n\nLimitations / Limitações\n\nUser Permissions: Requires read and execute access to directories\n\nPermissões do Usuário: Requer acesso de leitura e execução a diretórios\nSystem commands must be in PATH / Comandos do sistema devem estar no PATH\n\nSystem Differences: Behavior may vary by OS (Linux, macOS, Windows)\n\nDiferenças do Sistema: Comportamento pode variar por sistema operacional (Linux, macOS, Windows)\nTroubleshooting / Solução de Problemas\nTests Fail / Testes Falhando\n\nIf tests fail:\n\nCheck permissions / Verifique permissões - Ensure user has read/write access\nVerify Python / Confirme Python - Test python3 --version\nCheck commands / Verifique comandos - Ensure basic commands exist\nReview logs / Revise logs - Look for specific error messages\nCommand Not Executing / Comando Não Executando\n\nIf a custom command returns nothing or errors:\n\nVerify command exists / Verifique se o comando existe - Use which or whereis\nTest directly / Teste diretamente - Run command outside of this skill\nCheck PATH / Verifique o PATH - Ensure command is in system PATH\nPython Not Found / Python Não Encontrado\n\nIf Python test fails:\n\nCheck Python version / Verifique versão do Python - Requires 3.7+\nVerify installation / Confirme instalação - Check which python3\nReinstall if needed / Reinstale se necessário - See Python documentation\nLicense / Licença\n\nMIT License - Use freely for personal and commercial purposes. Licença MIT - Use livremente para fins pessoais e comerciais.\n\nCredits / Créditos\n\nCreated by Gustavo (GustavoZiaugra) with OpenClaw Criado por Gustavo (GustavoZiaugra) com OpenClaw\n\nSimple system testing / Teste de sistema simples\nPython environment verification / Verificação de ambiente Python\nCommand validation / Validação de comandos\nDebug-friendly output / Saída amigável para debug\n\nFind this and more OpenClaw skills at ClawHub.com Encontre este e mais habilidades do OpenClaw em ClawHub.com\n\n⭐ Star this repository if you find it useful! ⭐ Dê uma estrela neste repositório se você achar útil!\n\n✅ Simple, fast, no dependencies / Simples, rápido, sem dependências - Works everywhere, tests everything / Funciona em qualquer lugar, testa tudo / Test everywhere"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/GustavoZiaugra/quick-test",
    "publisherUrl": "https://clawhub.ai/GustavoZiaugra/quick-test",
    "owner": "GustavoZiaugra",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/quick-test",
    "downloadUrl": "https://openagent3.xyz/downloads/quick-test",
    "agentUrl": "https://openagent3.xyz/skills/quick-test/agent",
    "manifestUrl": "https://openagent3.xyz/skills/quick-test/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/quick-test/agent.md"
  }
}