aliyun-devops-manage-test
Smoke test for aliyun-devops-manage. Validate script compilation and one bounded DevOps metadata query path.
What this skill does
Category: test # PLATFORM DEVOPS Smoke Test ## Prerequisites - Target skill: `skills/platform/devops/aliyun-devops-manage/`. - Optional online SDK test dependency: ```bash python -m pip install -U alibabacloud_devops20210625 alibabacloud_tea_openapi ``` ## Test Steps 1) Run offline script compilation check: ```bash python3 tests/common/compile_skill_scripts.py \ --skill-path skills/platform/devops/aliyun-devops-manage \ --output output/aliyun-devops-manage-test/compile-check.json ``` 2) Run metadata API discovery script: ```bash python3 skills/platform/devops/aliyun-devops-manage/scripts/list_openapi_meta_apis.py \ --product-code devops \ --version 2021-06-25 \ --output-dir output/aliyun-devops-manage-test ``` 3) Verify generated files and API count: ```bash test -f output/aliyun-devops-manage-test/devops_2021-06-25_api_docs.json test -f output/aliyun-devops-manage-test/devops_2021-06-25_api_list.md rg -n "API count: [1-9][0-9]*" output/aliyun-devops-manage-test/devops_2021-06-25_api_list.md ``` 4) Save request summary, response summary, and raw output under `output/aliyun-devops-manage-test/`. ## Optional Online Read-only Check Set one organization id: ```bash export DEVOPS_ORGANIZATION_ID=<organization-id> ``` Run bounded read-only calls: ```bash python3 skills/platform/devops/aliyun-devops-manage/scripts/list_projects.py \ --organization-id \"$DEVOPS_ORGANIZATION_ID\" \ --max-results 10 \ --json \ --output output/aliyun-devops-manage-test/list-projects.json python3 skills/platform/devops/aliyun-devops-manage/scripts/list_repositories.py \ --organization-id \"$DEVOPS_ORGANIZATION_ID\" \ --page 1 \ --per-page 10 \ --json \ --output output/aliyun-devops-manage-test/list-repositories.json python3 skills/platform/devops/aliyun-devops-manage/scripts/list_pipelines.py \ --organization-id \"$DEVOPS_ORGANIZATION_ID\" \ --max-results 10 \ --json \ --output output/aliyun-devops-manage-test/list-pipelines.json ``` Verify basic response structure: ```bash rg -n '\"requestId\"|\"success\"|\"errorCode\"|\"errorMessage\"' \ output/aliyun-devops-manage-test/list-projects.json \ output/aliyun-devops-manage-test/list-repositories.json \ output/aliyun-devops-manage-test/list-pipelines.json ``` ## Pass Criteria - Script compilation check passes (`compile-check.json.status=pass`). - Metadata API discovery succeeds and produces both JSON and markdown output files. - API list markdown shows a positive API count. - Evidence files exist in `output/aliyun-devops-manage-test/`. - Optional online read-only check returns valid response structures. ## Result Template - Date: YYYY-MM-DD - Skill: skills/platform/devops/aliyun-devops-manage - Conclusion: pass / fail - Notes:
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.