Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计通过

platform-engineer平台工程师

Agent Skill

platform-engineer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,594

周安装

107

GitHub Stars

76

下载量

847
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:platform-engineer(平台工程师)
来源仓库:https://github.com/404kidwiz/claude-supercode-skills
仓库路径:skills/platform-engineer
安装命令:
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill platform-engineer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill platform-engineer

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理和分析。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需结合原始 README 核验用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写。
  • 可配合来源仓库进一步了解技能的具体实现和功能边界。

SKILL.md

Platform Engineer

Purpose

Provides Internal Developer Platform (IDP) expertise specializing in developer experience optimization, self-service infrastructure, and Golden Path templates. Builds platforms that reduce cognitive load for developers using Backstage, Crossplane, and GitOps.

When to Use

  • Building an Internal Developer Platform (IDP) from scratch
  • Implementing a Service Catalog or Developer Portal (Backstage)
  • Creating "Golden Path" templates for microservices (Spring Boot, Node.js, Go)
  • Abstracting cloud resources (RDS, S3) into custom platform APIs (Crossplane)
  • Designing self-service ephemeral environments
  • Measuring DORA metrics and Developer Experience (DevEx) KPIs

Examples

Example 1: Building a Developer Portal with Backstage

Scenario: A mid-sized tech company wants to reduce developer onboarding time from 2 weeks to 2 days.

Implementation:

  1. Deployed Backstage with standard integrations
  2. Created software templates for common service types (Go, Node.js, Python)
  3. Integrated with CI/CD (GitHub Actions) for automated provisioning
  4. Built service catalog with ownership and documentation
  5. Implemented TechDocs for centralized documentation

Results:

  • New service creation reduced from 2 weeks to 4 hours
  • Developer satisfaction increased 45%
  • Documentation coverage improved from 60% to 95%
  • Deployment frequency increased 3x

Example 2: Golden Path Templates for Microservices

Scenario: A microservices platform needs to reduce time-to-production for new services.

Implementation:

  1. Created standardized service templates with best practices embedded
  2. Implemented automated security scanning in templates
  3. Added observability (metrics, logging, tracing) by default
  4. Configured CI/CD pipelines with security gates
  5. Provided clear documentation and examples

Results:

  • 80% of new services use Golden Paths
  • Time to first production deployment reduced from 2 weeks to 2 days
  • Security compliance automated (zero manual review needed)
  • Developer productivity score improved 35%

Example 3: Crossplane Platform API

Scenario: Need to enable developers to provision cloud resources without direct access.

Implementation:

  1. Defined Crossplane XRDs for common infrastructure patterns
  2. Created composite resources for databases, queues, buckets
  3. Implemented RBAC with quotas and approvals
  4. Built self-service portal using Backstage plugin
  5. Integrated with existing workflows and tools

Results:

  • Developers can provision resources in minutes, not days
  • Cloud spend visibility improved (developers see cost impact)
  • Security posture improved (no direct cloud console access)
  • 60% reduction in infrastructure tickets

Best Practices

Platform Design

  • Aggregator, Not Replacement: Link to native tools, don't rebuild them
  • Golden Path, Not Golden Cage: Offer value, don't mandate usage
  • Developer Experience First: Treat developers as customers
  • Iterative Improvement: Start small, iterate based on feedback

Self-Service

  • Fast Provisioning: Complete resource provisioning in minutes
  • Clear Documentation: Self-documenting templates and workflows
  • Escape Hatches: Allow manual overrides when needed
  • Feedback Loops: Collect and act on developer feedback

Governance

  • Security by Default: Embed security in templates, not as add-ons
  • Compliance Automation: Automate compliance checks
  • Cost Visibility: Show cost impact to developers
  • Audit Trails: Log all actions for accountability

Operations

  • High Availability: Platform must be as reliable as production
  • Monitoring: Monitor platform health and adoption metrics
  • Incident Response: Have runbooks for platform issues
  • Continuous Improvement: Regular platform health reviews


Core Capabilities

Internal Developer Platform

  • Building self-service infrastructure platforms
  • Implementing service catalogs with Backstage
  • Creating developer portals and documentation hubs
  • Managing platform governance and policies

Golden Path Templates

  • Developing standardized application templates
  • Creating infrastructure-as-code modules
  • Implementing security and compliance controls
  • Automating service onboarding

GitOps and Infrastructure

  • Implementing GitOps workflows with ArgoCD/Flux
  • Managing Kubernetes clusters and operators
  • Configuring Crossplane for cloud resource abstraction
  • Setting up ephemeral environments

Developer Experience

  • Measuring DORA metrics and DevEx KPIs
  • Reducing developer cognitive load
  • Implementing internal tooling and automation
  • Managing developer onboarding and training


Workflow 2: Infrastructure Composition (Crossplane)

Goal: Allow developers to request a PostgreSQL DB via Kubernetes Manifest (YAML) without knowing AWS details.

Steps:

  1. Define Composite Resource Definition (XRD) # postgres-xrd.yaml apiVersion: apiextensions.crossplane.io/v1 kind: CompositeResourceDefinition metadata: name: xpostgresqlinstances.database.example.org spec: group: database.example.org names: kind: XPostgreSQLInstance plural: xpostgresqlinstances claimNames: kind: PostgreSQLInstance plural: postgresqlinstances versions: - name: v1alpha1 served: true referenceable: true schema: openAPIV3Schema: type: object properties: spec: properties: storageGB: type: integer
  2. Define Composition (AWS Implementation) # aws-composition.yaml apiVersion: apiextensions.crossplane.io/v1 kind: Composition metadata: name: xpostgresqlinstances.aws.database.example.org spec: compositeTypeRef: apiVersion: database.example.org/v1alpha1 kind: XPostgreSQLInstance resources: - base: apiVersion: rds.aws.crossplane.io/v1alpha1 kind: DBInstance spec: forProvider: region: us-east-1 dbInstanceClass: db.t3.micro masterUsername: masteruser allocatedStorage: 20 patches: - fromFieldPath: "spec.storageGB" toFieldPath: "spec.forProvider.allocatedStorage"
  3. Developer Experience

- Developer applies: apiVersion: database.example.org/v1alpha1 kind: PostgreSQLInstance metadata: name: my-db namespace: my-app spec: storageGB: 50 - Crossplane provisions RDS instance automatically.



4. Patterns & Templates

Pattern 1: The "Golden Path" Repository

Use case: Centralized template management.

/templates
  /spring-boot-microservice
    /src
    /Dockerfile
    /chart
    /catalog-info.yaml
    /mkdocs.yml
  /react-frontend
    /src
    /Dockerfile
    /nginx.conf
  /python-data-worker
    /src
    /requirements.txt

Pattern 2: Scorecards (Gamification)

Use case: Encouraging best practices via Backstage.

  • Bronze Level:

- Has catalog-info.yaml - Has README.md - CI builds passing

  • Silver Level:

- Code coverage > 80% - Alerts defined in Prometheus - Runbook link exists

  • Gold Level:

- DORA Metrics tracked - Security scan passing (0 High/Critical) - SLOs defined

Pattern 3: TechDocs (Docs-as-Code)

Use case: Keeping documentation close to code.

# mkdocs.yml
site_name: My Service Docs
nav:
  - Home: index.md
  - API: api.md
  - Architecture: architecture.md
  - Runbook: runbook.md
plugins:
  - techdocs-core


6. Integration Patterns

kubernetes-specialist:

  • Handoff: Platform Engineer defines abstract PostgreSQL claim → Kubernetes Specialist implements the operator/driver logic.
  • Collaboration: Designing the underlying cluster topology for the IDP.
  • Tools: Crossplane, ArgoCD.

security-engineer:

  • Handoff: Platform Engineer builds the template → Security Engineer adds SAST/SCA steps to the CI skeleton.
  • Collaboration: "Secure by Default" configurations in Golden Paths.
  • Tools: OPA Gatekeeper, Snyk.

sre-engineer:

  • Handoff: Platform Engineer exposes "Create Alert" capability → SRE defines the default alert rules.
  • Collaboration: Defining SLI/SLO templates for services.
  • Tools: Prometheus, PagerDuty.

backend-developer:

  • Handoff: Platform Engineer provides the "Create Service" button → Backend Developer uses it to ship code.
  • Collaboration: Gathering feedback on the template ("Is it too bloated?").
  • Tools: Backstage.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

31.75%
按下载量换算269

OpenCode

23.97%
按下载量换算203

Codex

18.57%
按下载量换算157

Gemini CLI

12.26%
按下载量换算104

Cursor

8.63%
按下载量换算73

windsurf

3.32%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills