agentsclimarketplace

Workflow

Skill PIXARTSeu/Synapse/packages/codegraph/data/skill/pixarts/workflow

Self-improving AI brain for Claude Code & Desktop — 28 MCP tools, 253 skills, collective memory, project tracking, work logs. One server, all your sessions share the same knowledge. Deploy on Coolify in 2 minutes.

Install
npx -y skills add PIXARTSeu/Synapse --skill workflow

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 8 stars8 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Pixarts complete workflow - intake, CMS setup, scaffold, build, deploy, QA. Use when implementing full client site projects, managing multi-phase delivery, or coordinating CMS and frontend setup.

SKILL.md

9.3 KB, ~1.8k tokens by cl100k_base, as published. Nobody here has run it

Pixarts Workflow Skill

Workflow completo per l'implementazione di siti web client con Payload CMS multi-tenant.

Overview

┌─────────────────────────────────────────────────────────────────────────────┐
│                        PIXARTS CLIENT WORKFLOW                               │
├─────────────────────────────────────────────────────────────────────────────┤
│                                                                              │
│  FASE 0: INTAKE              @client-intake                                  │
│  ─────────────────           Questionario interattivo                        │
│  Output: brief.json          (1 domanda alla volta)                          │
│                                                                              │
│           ▼                                                                  │
│                                                                              │
│  FASE 1: CMS SETUP           @tenant-setup                                   │
│  ─────────────────           - Crea tenant in cms.pixarts.eu                 │
│  Output: tenant-config.json  - Crea utente admin                             │
│                              - Configura collections                         │
│                              - Setup header/footer                           │
│                                                                              │
│           ▼                                                                  │
│                                                                              │
│  FASE 2: SCAFFOLD            @site-scaffolder                                │
│  ─────────────────           - Crea repo GitHub                              │
│  Output: progetto Next.js    - Init Next.js 15 + TypeScript                  │
│                              - Setup shadcn/ui + Tailwind                    │
│                              - Configura i18n                                │
│                              - CMS client pronto                             │
│                                                                              │
│           ▼                                                                  │
│                                                                              │
│  FASE 3: BUILD               @site-builder                                   │
│  ─────────────────           - Sviluppa componenti                           │
│  Output: sito completo       - Crea pagine dal brief                         │
│                              - Implementa form/features                      │
│                              - Animazioni Framer Motion                      │
│                              - i18n translations                             │
│                                                                              │
│           ▼                                                                  │
│                                                                              │
│  FASE 4: DEPLOY              @site-deployer                                  │
│  ─────────────────           - Configura Coolify                             │
│  Output: sito live           - Setup dominio + SSL                           │
│                              - CI/CD GitHub Actions                          │
│                              - Webhook revalidation                          │
│                                                                              │
│           ▼                                                                  │
│                                                                              │
│  FASE 5: QA                  @site-qa                                        │
│  ─────────────────           - Test performance (Lighthouse)                 │
│  Output: QA report           - Test accessibilita                            │
│                              - Test SEO                                      │
│                              - Test cross-browser                            │
│                              - Test funzionale                               │
│                                                                              │
└─────────────────────────────────────────────────────────────────────────────┘

Agenti Coinvolti

AgenteFileRuolo
@client-intake15-client-intake.mdRaccolta requisiti interattiva
@tenant-setup16-tenant-setup.mdConfigurazione CMS
@site-scaffolder17-site-scaffolder.mdInit progetto frontend
@site-builder18-site-builder.mdSviluppo completo
@site-deployer19-site-deployer.mdDeploy Coolify
@site-qa20-site-qa.mdQuality Assurance

File di Output per Fase

FASE 0: Intake

.client-briefs/
└── [slug]/
    ├── brief.json        # Requisiti strutturati
    └── notes.md          # Note aggiuntive

FASE 1: CMS Setup

.client-briefs/
└── [slug]/
    ├── brief.json
    ├── tenant-config.json  # Config tenant CMS
    └── .env.local          # Variabili ambiente

FASE 2: Scaffold

[slug]-site/              # Repository GitHub
├── src/
│   ├── app/
│   ├── components/
│   ├── lib/
│   ├── hooks/
│   ├── types/
│   └── i18n/
├── Dockerfile
├── package.json
└── ...

FASE 3: Build

[slug]-site/
├── src/
│   ├── app/[locale]/
│   │   ├── page.tsx       # Homepage
│   │   └── (routes)/      # Altre pagine
│   ├── components/
│   │   ├── layout/        # Header, Footer
│   │   ├── sections/      # Hero, Services, etc.
│   │   └── shared/        # Container, Section
│   └── i18n/messages/     # Traduzioni
└── ...

FASE 4: Deploy

.client-briefs/
└── [slug]/
    └── deploy-config.json  # Config Coolify

FASE 5: QA

.qa-reports/
└── [date]-[slug]/
    ├── qa-report.md       # Report completo
    ├── lighthouse.json    # Metriche performance
    ├── a11y.json          # Report accessibilita
    └── screenshots/       # Screenshot test

Stack Tecnologico

LayerTecnologia
FrameworkNext.js 15+ (App Router)
LanguageTypeScript 5+
StylingTailwind CSS 4
Componentsshadcn/ui + Radix
AnimationFramer Motion
i18nnext-intl
Formsreact-hook-form + Zod
CMSPayload CMS 3.0
DatabaseMongoDB Atlas
DeployCoolify (Docker)

Comandi Disponibili

ComandoDescrizione
/new-client [nome]Avvia workflow completo
/cms-setupSolo configurazione CMS

Regole Critiche

  1. MAI saltare fasi - Ogni fase produce output per la successiva
  2. Questionario interattivo - 1 domanda alla volta, attendi risposta
  3. Brief-driven - Ogni decisione deriva dal brief approvato
  4. Filtro tenant SEMPRE - Su ogni query API al CMS
  5. i18n fin dall'inizio - Tutte le stringhe traducibili
  6. Mobile-first - Design responsive partendo da mobile
  7. Performance - Target Lighthouse > 90

Esempio Flusso Completo

# Utente
/new-client Ristorante Da Mario

# Sistema
@client-intake inizia questionario:
"Come si chiama l'azienda?" → "Ristorante Da Mario"
"Che tipo di attivita?" → "Ristorante italiano"
...
(18 domande interattive)
...
Brief completato!

# Sistema
@tenant-setup:
- Tenant "ristorante-da-mario" creato
- Admin user creato
- Collections: pages, services, testimonials, faq
- Lingue: IT, EN

# Sistema
@site-scaffolder:
- Repo github.com/deve1993/ristorante-da-mario-site creato
- Next.js 15 inizializzato
- shadcn/ui configurato
- CMS client pronto

# Sistema
@site-builder:
- Homepage con Hero, Menu, Testimonials, CTA
- Pagina Menu con grid servizi
- Pagina Contatti con form
- i18n IT/EN

# Sistema
@site-deployer:
- Deploy su Coolify
- Dominio: ristorantedamario.it
- SSL: Let's Encrypt
- CI/CD: GitHub Actions

# Sistema
@site-qa:
- Lighthouse: 96/100
- Accessibilita: 98/100
- SEO: 100/100
- Test funzionali: PASS

READY FOR LAUNCH!

What ships with it: 3 files

2.5 KB alongside SKILL.md

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.