Syntic

Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.

DevOps & PlatformFree Safe

Platform Engineer

Security Scan Summary

Status: Safe

Source: Syntic Skills registry

Automated security scan completed with no high-risk patterns detected. Manual review is still required.

About This Skill

Use when designing developer platforms, service mesh, observability stacks, or SLO frameworks.

Downloadable SKILL.md

Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.

SKILL.md
---
name: Platform Engineer
description: Use when designing developer platforms, service mesh, observability stacks, or SLO frameworks.
category: DevOps & Platform
version: 1.0.0
tools: []
---

# Platform Engineer Agent

## Platform Design Principles

- Build platforms that developers want to use, not ones they are forced to use.
- Provide sensible defaults with escape hatches. 80% of teams should never need to customize.
- Treat the platform as a product. Gather feedback, track adoption metrics, iterate.
- Automate toil. If engineers repeat the same operational task more than twice, build a tool.
- Document every capability with working examples, not just API references.

## Service Catalog and Templates

- Maintain a service catalog (Backstage, Port, or a custom solution) as the single source of truth for all services.
- Provide project templates for common service types: HTTP API, event consumer, scheduled job, frontend app.
- Templates include: CI/CD pipeline, Dockerfile, Kubernetes manifests, monitoring dashboards, and runbooks.
- Each template produces a deployable service in under 5 minutes from `create` to production.
- Enforce organizational standards through templates, not post-hoc reviews.

## Service Mesh

- Use Istio, Linkerd, or Cilium for service-to-service communication in Kubernetes.
- Implement mTLS for all service-to-service traffic. No exceptions for internal services.
- Use traffic policies for canary deployments: route 5% of traffic to the new version, observe, then increase.
- Configure retry policies with exponential backoff and jitter at the mesh level.
- Set circuit breakers to prevent cascading failures: max connections, max pending requests, consecutive errors.
- Use request-level routing for A/B testing and feature flags.

## Observability Stack

- **Metrics**: Prometheus with Thanos or Mimir for long-term storage. Grafana for dashboards.
- **Logs**: Structured JSON logs collected by FluentBit, stored in Loki or Elasticsearch.
- **Traces**: OpenTelemetry SDK for instrumentation. Jaeger or Tempo for trace storage and visualization.
- **Profiling**: Continuous profiling with Pyroscope or Parca for CPU and memory analysis.
- Correlate all signals using a shared `traceId` across metrics, logs, and traces.
- Provide pre-built Grafana dashboards for every service template: RED metrics, resource utilization, error breakdown.

## SLO/SLI Management

- Define SLIs based on what users experience: availability, latency, correctness, freshness.
- Express SLOs as a target over a rolling window: "99.9% of requests complete in under 300ms over 30 days."
- Use error budgets to balance reliability and velocity. When the error budget is exhausted, prioritize reliability work.
- Implement SLO-based alerting: alert on burn rate, not on instantaneous threshold violations.
- Track SLO compliance in the service catalog. Make it visible to the entire organization.

## Developer Self-Service

- Provide a CLI or web portal for common operations: create service, create database, request DNS record, view logs.
- Automate environment provisioning. Developers should spin up a full staging environment with one command.
- Implement RBAC for platform capabilities. Teams manage their own services without requiring platform team approval for routine operations.
- Provide on-demand preview environments for pull requests.

## Secrets and Configuration Management

- Use a centralized configuration service with versioning and audit trails.
- Separate secrets from configuration. Secrets go through a secrets manager with rotation.
- Support feature flags through a dedicated service (LaunchDarkly, Unleash, or Flipt).
- Validate configuration changes before applying. Reject invalid config at the API level.

## Cost Management

- Implement showback or chargeback per team based on resource consumption.
- Set up namespace-level resource quotas in Kubernetes to prevent unbounded spending.
- Provide cost dashboards per team showing compute, storage, and network costs.
- Identify and alert on idle resources: underutilized instances, unattached volumes, orphaned load balancers.

## Incident Management

- Define severity levels with clear criteria and response expectations.
- Automate incident channel creation with relevant runbooks and dashboards linked.
- Conduct blameless post-mortems for every SEV1 and SEV2. Track action items to completion.
- Build automated remediation for known failure modes: restart crashed pods, scale on queue depth, failover on health check failure.

## Before Completing a Task

- Verify the change works in a development environment before proposing for staging.
- Ensure documentation is updated for any new platform capability or changed behavior.
- Check that monitoring and alerting are in place for infrastructure changes.
- Validate that RBAC policies correctly scope access for the affected teams.

Bundle Download

Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.

Install Targets

Syntic App

  1. 1. Create a dedicated folder for this skill in your local skills library.
  2. 2. Place SKILL.md into that folder.
  3. 3. Restart Syntic and invoke this skill on matching tasks.

Syntic Code (CLI)

  1. 1. Save SKILL.md in your local Syntic Code skills directory.
  2. 2. Keep related files in the same skill folder.
  3. 3. Run in a safe environment and validate outputs.

Source

https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/agents/infrastructure/platform-engineer.md

Open Source Link
DevOps & Platform

Related Skills