Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

skill-108技能 108

Agent Skill

skill-108 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,397

周安装

357

GitHub Stars

公开资料未说明

下载量

2,942
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:skill-108(技能 108)
来源仓库:https://github.com/timbohnett-farther/skill-108
安装命令:
openclaw skills install skill-108
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skill-108

简介

掌握平台工程原理,构建自助式内部开发平台。

  • 优化基础设施抽象与可观察性,提升开发体验。
  • 适合 DevOps 团队实现标准化运维流程。
  • 安装前建议确认团队技术栈匹配度。skill-108 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 注意维护状态,确保平台组件持续可用。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill 108: Platform Engineering Fundamentals

Quality Grade: 94-95/100 Author: OpenClaw Assistant Last Updated: March 2026 Difficulty: Advanced (requires systems thinking, operations knowledge)


Overview

Platform Engineering is the discipline of building, operating, and evolving the shared infrastructure and tools that enable product teams to develop, deploy, and run applications effectively. It's the bridge between DevOps and developer experience.

This skill covers:

  • Developer experience (DX) as core metric
  • Internal platforms and self-service
  • Infrastructure abstraction (IaC, APIs, abstractions)
  • Observability as platform feature
  • Cost management and resource optimization
  • Governance and compliance automation

Part 1: Developer Experience (DX) Framework

DX Metrics

Cognitive Load:

  • How much does a developer need to understand to deploy?
  • Ideal: One command, no configuration needed

Time to First Deployment:

  • New engineer → First code in production
  • Benchmark: <4 hours for standard change

Deployment Confidence:

  • Percentage of deployments that complete without incident
  • Target: >99% for standard changes

Self-Service Capability:

  • Percentage of operational tasks devs can do themselves
  • Avoid: Waiting for ops to provision infrastructure

DX Anti-Patterns

❌ You must edit YAML files to deploy → Platform should abstract complexity

❌ Deployment requires 5+ approvals → Trust system, enforce with automation

❌ Debugging requires SSH + logs → Logs should be central, queryable, correlated

❌ "We'll document this... eventually" → Self-documenting APIs, help in CLIs, built-in guidance


Part 2: Internal Platforms & Self-Service

Platform as Product

Treat internal platforms as products:

  • User research (talk to developers, understand pain)
  • Roadmap & prioritization
  • Release notes & communication
  • Support channels
  • Feedback loops

Example roadmap:

Q1: Reduce deployment time from 15min to 5min (automated pre-checks)
Q2: Enable self-service database provisioning (managed service)
Q3: Unified observability dashboard (logs + metrics + traces)
Q4: Cost visibility per service (chargeback, optimization)

Self-Service Capabilities

Developers should self-serve:

  • Infrastructure provisioning (no ticket → 5 min to running)
  • Secrets management (declarative, not manual)
  • Scaling policies (set target CPU, let platform scale)
  • Monitoring & alerting (copy template, customize)
  • Logs & traces (central search, no SSH required)
  • Cost visibility (per service, per deployment)

Ops retains control over:

  • Security policies (compliance, encryption, network)
  • Cost guardrails (alerts, limits, approval for high-cost resources)
  • Capacity planning (reserved capacity, multi-tenant efficiency)
  • Incident response (runbooks, escalation, coordination)

Part 3: Infrastructure Abstraction

Layered Abstraction

Layer 1: Dev writes code (Python, Go, Node.js)
         ↓
Layer 2: Containerized by platform (Dockerfile auto-generated or standardized)
         ↓
Layer 3: Deployed as service (HTTP, gRPC, pub/sub)
         ↓
Layer 4: Scaled by platform (Kubernetes, orchestrator)
         ↓
Layer 5: Monitored & reported by platform (no dev action needed)

Goal: Maximize Layer 5 automation; minimize dev understanding of Layers 3-5

Infrastructure as Code (IaC) Standards

# Developers write simple service definition
services:
  payment-service:
    image: our-registry/payment:latest
    cpu: 500m
    memory: 512Mi
    replicas: 3
    readiness_probe:
      path: /health
      interval: 10s
    env:
      - name: DB_URL
        secret: payment-db-conn-string
    port: 8080

# Platform generates:
# - Kubernetes Deployment
# - Service + Ingress
# - Network policies
# - RBAC rules
# - Monitoring alerts
# - Backup policies
# (All automated, compliant, audited)

Part 4: Observability as Platform Feature

Three Pillars

Logs:

  • Centralized (not SSH to boxes)
  • Structured (JSON, queryable fields)
  • Correlated (request trace across services)
  • Searchable (not "grep prod-*.log")

Metrics:

  • Application metrics (latency, error rate, business KPIs)
  • Infrastructure metrics (CPU, memory, network)
  • Custom metrics (payment value, user actions)
  • Pre-built dashboards (service health, dependencies)

Traces:

  • Request flows across services
  • Latency attribution (which service is slow)
  • Error context (where did request fail)
  • Sampling strategy (log everything in dev, sample in prod)

Observability as Self-Service

Developers should:

1. Write minimal instrumentation:
   @monitor  # Decorator handles logging, metrics, tracing
   def process_payment(order):
       ...

2. View their data:
   - Logs: Search "service:payment AND status:error"
   - Metrics: Dashboard shows latency, error rate
   - Traces: Click request, see call graph

3. Set alerts:
   - "Alert me if error rate > 1%"
   - "Alert me if p99 latency > 500ms"
   - Platform enforces reasonable thresholds

Part 5: Cost Management & Governance

Cost Visibility

Every developer should know:

  • What does their service cost per month?
  • What's the main cost driver (CPU, memory, storage)?
  • How does cost change with scale?

Implementation:

Cost per service = (compute + storage + data transfer) * uptime
Service cost = sum of all pods * hourly_rate * hours_running

Dashboard shows:
- Cost trend over time
- Cost vs. similar services (benchmark)
- Cost drivers (what changed?)

Compliance Automation

Policies enforced automatically:

1. Encryption: All data at rest must be encrypted
   → Platform: Volumes auto-encrypted, keys managed
   
2. Backup: All stateful services must have backups
   → Platform: Automatic daily backups, tested recovery

3. Network: Services in different security zones isolated
   → Platform: Network policies auto-generated from service labels

4. Audit: All changes logged and immutable
   → Platform: All infrastructure changes in audit log, reviewed

5. Secrets: Never in code or config
   → Platform: Secrets injected at runtime, rotated automatically

Conclusion

Platform engineering is about reducing toil, increasing safety, and improving developer productivity. By building platforms that abstract complexity, enable self-service, and enforce compliance automatically, you let product teams focus on customer value instead of infrastructure puzzles.

Key Takeaway: Good platforms are invisible—developers feel like they're working on a modern, trustworthy system without thinking about how it works.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.91%
按下载量换算2,645

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills