create-pipeline — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited create-pipeline (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Generate Harness v0 Pipeline YAML and optionally push to Harness via MCP.
references/codebase-analysis.md to determine:Critical rule: Never hardcode placeholder values (e.g. 123456789012, us-east-1, my-cluster) for deployment target, region, registry, or cluster when the user did not specify them — ask the user instead. If the user did not specify region, account ID, cluster, or registry (e.g. "deploys to ECS" with no region or cluster), ask the user for those values before generating YAML.
Run or ShellScript steps. Consult references/native-steps.md for the full mapping. Key rules:BuildAndPushDockerRegistry / BuildAndPushECR / BuildAndPushGCR / BuildAndPushACR (never Run: docker build && docker push)K8sRollingDeploy / K8sBlueGreenDeploy / K8sCanaryDeploy (never Run: kubectl apply)HelmDeploy (never Run: helm upgrade --install)EcsRollingDeploy (never Run: aws ecs update-service)TerraformPlan / TerraformApply (never Run: terraform apply)AquaTrivy, Snyk, Sonarqube, Semgrep, etc.)S3Upload / GCSUpload (never Run: aws s3 cp)HarnessApproval / JiraApproval (never polling scripts)JiraCreate / ServiceNowCreate (never Run: curl)Run steps only for custom build/test/lint commands with no native equivalentreports block (e.g. type: JUnit, spec.paths) so Harness can capture results; see references/codebase-analysis.md for framework → report path.^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$ — use only letters, numbers, spaces, hyphens, underscores, or periods (no commas). (b) Every CI and CD stage must include a failureStrategies array (Approval stages do not require one). For CI use MarkAsFailure (never Ignore — it hides failures); for CD use StageRollback.harness_create with resource_type pipeline and body: { yamlPipeline: "<YAML string>" }pipeline:
identifier: my_pipeline # ^[a-zA-Z_][0-9a-zA-Z_]{0,127}$
name: My Pipeline
orgIdentifier: default
projectIdentifier: my_project
tags: {}
properties:
ci:
codebase: # Required for CI stages
connectorRef: github_connector
repoName: my-repo
build:
type: branch
spec:
branch: <+trigger.branch>
stages:
- stage: ...- stage:
identifier: build
name: Build
type: CI
spec:
cloneCodebase: true
platform:
os: Linux
arch: Amd64
runtime:
type: Cloud # Cloud, Kubernetes, VM, Docker
spec: {}
execution:
steps:
- step: ...
failureStrategies:
- onFailure:
errors: [AllErrors]
action:
type: MarkAsFailure- stage:
identifier: deploy
name: Deploy
type: Deployment
spec:
deploymentType: Kubernetes # Kubernetes, NativeHelm, ECS, ServerlessAwsLambda, Ssh, WinRm, AzureWebApp
service:
serviceRef: my_service
environment:
environmentRef: dev
infrastructureDefinitions:
- identifier: k8s_dev
execution:
steps:
- step: ...
rollbackSteps:
- step: ...
failureStrategies:
- onFailure:
errors: [AllErrors]
action:
type: StageRollbackHarnessApproval requires approvers.disallowPipelineExecutor (required by the API). Set it to true so the pipeline executor cannot approve their own run; omit it and the API returns "disallowPipelineExecutor: is missing but it is required".
- stage:
identifier: approval
name: Approval
type: Approval
spec:
execution:
steps:
- step:
identifier: approve
name: Approve
type: HarnessApproval
spec:
approvalMessage: "Please review and approve"
approvers:
userGroups: [prod_approvers]
minimumCount: 1
disallowPipelineExecutor: true
includePipelineExecutionHistory: true
timeout: 1d
failureStrategies:
- onFailure:
errors: [AllErrors]
action:
type: Abort- step:
identifier: run_tests
name: Run Tests
type: Run
spec:
shell: Bash # Sh, Bash, Powershell, Pwsh, Python
command: |
npm ci
npm test
envVariables:
NODE_ENV: test
reports:
type: JUnit
spec:
paths: ["junit.xml"]- step:
identifier: docker_push
name: Build and Push
type: BuildAndPushDockerRegistry
spec:
connectorRef: dockerhub
repo: myorg/myimage
tags: [latest, <+pipeline.sequenceId>]
dockerfile: Dockerfile- step:
identifier: rollout
name: Rollout
type: K8sRollingDeploy
spec:
skipDryRun: false
timeout: 10m- step:
identifier: rollback
name: Rollback
type: K8sRollingRollback
spec: {}
timeout: 10mFor the complete catalog of 300+ native step types (cloud deployments, security scanners, IaC, ticketing, approvals, GitOps, and more), consult references/native-steps.md. Always check this reference before using a Run step.
pipeline:
variables:
- name: env
type: String
default: dev
- name: api_key
type: Secret
value: <+secrets.getValue("api_key")>Common expressions:
<+pipeline.variables.env> - Pipeline variable<+stage.variables.VAR> - Stage variable<+steps.step_id.output.outputVariables.VAR> - Step output<+trigger.branch>, <+trigger.commitSha> - Trigger info<+secrets.getValue("name")> - Secret reference<+pipeline.sequenceId> - Build number# Parallel steps
- parallel:
- step: ...
- step: ...
# Parallel stages
stages:
- parallel:
- stage: ...
- stage: ...failureStrategies:
- onFailure:
errors: [AllErrors] # AllErrors, Timeout, Authentication, Connectivity
action:
type: StageRollback # Ignore, Retry, MarkAsSuccess, Abort, StageRollback, PipelineRollback- stage:
when:
pipelineStatus: Success
condition: <+pipeline.variables.deploy> == "true"Placement: strategy must be at the stage level, as a sibling of `spec`, not inside spec. If you put strategy under spec, the matrix will not be applied and the UI will not show matrix iterations.
Reference matrix values in steps with <+stage.matrix.TAG> (e.g. <+stage.matrix.python_version>). Use hyphen-free dimension names (e.g. python_version not python-version).
- stage:
identifier: test_matrix
name: Test Matrix
type: CI
spec:
cloneCodebase: true
platform:
os: Linux
arch: Amd64
runtime:
type: Cloud
spec: {}
execution:
steps:
- step:
type: Run
spec:
image: node:<+stage.matrix.node_version>
command: npm test
strategy:
matrix:
node_version: ["16", "18", "20"]
os: [linux, macos]
maxConcurrency: 3
failureStrategies:
- onFailure:
errors: [AllErrors]
action:
type: AbortAfter generating the YAML, create it in Harness:
harness_list (resource_type: project, org_id) to confirm. If the project does not exist, create it first with harness_create (resource_type: project, body: { identifier, name }) or ask the user.harness_create with the pipeline YAML serialized as a `yamlPipeline` string in the body. Do not pass a nested JSON pipeline object; it causes serialization errors.Call MCP tool: harness_create
Parameters:
resource_type: "pipeline"
org_id: "<organization>"
project_id: "<project>"
body: { yamlPipeline: "<full pipeline YAML string, including 'pipeline:' root key>" }Example body (abbreviated):
{
"yamlPipeline": "pipeline:\n identifier: nodejs_ci\n name: Node.js CI\n projectIdentifier: my_project\n orgIdentifier: default\n stages:\n - stage:\n identifier: build\n ..."
}To update an existing pipeline, use the same yamlPipeline format:
Call MCP tool: harness_update
Parameters:
resource_type: "pipeline"
resource_id: "<pipeline_identifier>"
org_id: "<organization>"
project_id: "<project>"
body: { yamlPipeline: "<full updated pipeline YAML string>" }To verify it was created:
Call MCP tool: harness_get
Parameters:
resource_type: "pipeline"
resource_id: "<pipeline_identifier>"
org_id: "<organization>"
project_id: "<project>"pipeline:
identifier: nodejs_ci
name: Node.js CI
projectIdentifier: my_project
orgIdentifier: default
properties:
ci:
codebase:
connectorRef: github_connector
repoName: my-app
build:
type: branch
spec:
branch: <+trigger.branch>
stages:
- stage:
identifier: build_and_test
name: Build and Test
type: CI
spec:
cloneCodebase: true
platform:
os: Linux
arch: Amd64
runtime:
type: Cloud
spec: {}
execution:
steps:
- step:
identifier: install
name: Install
type: Run
spec:
shell: Bash
command: npm ci
- parallel:
- step:
identifier: lint
name: Lint
type: Run
spec:
shell: Bash
command: npm run lint
- step:
identifier: test
name: Test
type: Run
spec:
shell: Bash
command: npm test
reports:
type: JUnit
spec:
paths: ["junit.xml"]
- step:
identifier: docker_push
name: Build and Push
type: BuildAndPushDockerRegistry
spec:
connectorRef: dockerhub
repo: myorg/my-app
tags: [<+pipeline.sequenceId>, latest]
failureStrategies:
- onFailure:
errors: [AllErrors]
action:
type: MarkAsFailurepipeline:
identifier: k8s_deploy
name: K8s Deploy
projectIdentifier: my_project
orgIdentifier: default
stages:
- stage:
identifier: deploy_staging
name: Deploy Staging
type: Deployment
spec:
deploymentType: Kubernetes
service:
serviceRef: my_service
environment:
environmentRef: staging
infrastructureDefinitions:
- identifier: k8s_staging
execution:
steps:
- step:
identifier: rollout
name: Rollout
type: K8sRollingDeploy
spec:
skipDryRun: false
timeout: 10m
rollbackSteps:
- step:
identifier: rollback
name: Rollback
type: K8sRollingRollback
spec: {}
timeout: 10m
failureStrategies:
- onFailure:
errors: [AllErrors]
action:
type: StageRollback
- stage:
identifier: approval
name: Production Approval
type: Approval
spec:
execution:
steps:
- step:
identifier: approve
name: Approve Prod
type: HarnessApproval
spec:
approvalMessage: "Approve production deployment?"
approvers:
userGroups: [prod_approvers]
minimumCount: 1
disallowPipelineExecutor: true
includePipelineExecutionHistory: true
timeout: 1d
failureStrategies:
- onFailure:
errors: [AllErrors]
action:
type: Abort
- stage:
identifier: deploy_prod
name: Deploy Production
type: Deployment
spec:
deploymentType: Kubernetes
service:
serviceRef: my_service
environment:
environmentRef: prod
infrastructureDefinitions:
- identifier: k8s_prod
execution:
steps:
- step:
identifier: rollout
name: Rollout
type: K8sRollingDeploy
spec:
skipDryRun: false
timeout: 10m
rollbackSteps:
- step:
identifier: rollback
name: Rollback
type: K8sRollingRollback
spec: {}
timeout: 10m
failureStrategies:
- onFailure:
errors: [AllErrors]
action:
type: StageRollback/create-pipeline
Create a CI pipeline for a Node.js app that builds, runs tests, and pushes to Docker Hub/create-pipeline
Create a Kubernetes deployment pipeline with staging, manual approval, and production stages/create-pipeline
Build a pipeline that runs tests, pushes a Docker image, and deploys to ECS with rollback/create-pipeline
Create a CI pipeline that tests across Node 16, 18, and 20 on both Linux and macOS/create-pipeline
Create a pipeline with parallel test stages for unit tests, integration tests, and lintingreferences/native-steps.md before using a Run step. Native steps provide better error handling and UI integration.harness_list, resource_type: project) before creating the pipeline.^[a-zA-Z_][0-9a-zA-Z_]{0,127}$ (letters, numbers, underscores only).^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$ — no commas; use letters, numbers, spaces, hyphens, underscores, or periods (e.g. use "Build Test and Push" not "Build, Test and Push").failureStrategies array (Approval stages do not require one); omit it and the API returns "failureStrategies: is missing but it is required". For CI use type: MarkAsFailure; for CD use type: StageRollback.CI, Deployment, Approval, Customspec fieldstrategy must be a sibling of spec on the stage, not inside spec. Use strategy.matrix at the stage level and reference values as <+stage.matrix.TAG>.approvers.disallowPipelineExecutor: true to the step spec.harness_list (resource_type: project, org_id). Create it first with harness_create (resource_type: project, body: { identifier, name }) or confirm org_id/project_id are correct.{ yamlPipeline: "<full pipeline YAML string>" } instead of a nested JSON pipeline object. Nested JSON causes serialization errors.DUPLICATE_IDENTIFIER — Pipeline already exists; use harness_update insteadCONNECTOR_NOT_FOUND — Create the connector first or fix connectorRefACCESS_DENIED — Check API key permissionsus-east-1, 123456789012).<+input> values - provide via input sets or runtime inputsharness_execute (resource_type: "connector", action: "test_connection")harness_status~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.