Introduction

Poyesis Developers is the unified workspace for projects, CI/CD, and the integrations your team runs on.

Poyesis Developers brings project management, CI/CD, and the integrations you already rely on into a single workspace — so your team can plan, build, and ship without switching tabs.

New here? The fastest way to learn Poyesis is to run your first pipeline — it takes under five minutes and no credit card.

What you can build#

How it works#

Connect your stack once and let Poyesis orchestrate the rest. A typical workflow looks like this:

1
Connect your repositories

Link GitHub or GitLab in two clicks. Poyesis maps your repos and environments automatically.

2
Define a pipeline

Add a poyesis.yaml to your repo, or start from a template and tune it in the visual editor.

3
Plan & track work

Tie issues and sprints directly to commits, PRs, and deploys.

4
Ship & automate

Notify Slack, archive artifacts, and trigger downstream tools the moment a deploy lands.

A first pipeline#

Here is a minimal pipeline that builds and deploys a Node.js service:

poyesis.yaml
version: 1
pipeline:
  - stage: build
    run: npm ci && npm run build
  - stage: test
    run: npm test
  - stage: deploy
    needs: [build, test]
    run: poyesis deploy --env production

Stages with no needs run in parallel. Add needs: to fan results back in before a deploy — exactly like the build → test → deploy graph on your dashboard.

Design language#

These docs follow the Atlassian Design System — its color tokens, typography scale, and spacing — so the documentation feels native to the rest of the Poyesis product.

You're ready to go. Continue to the Quickstart to run your first pipeline.