Download the PHP package andreapollastri/larapilot without Composer

On this page you can find all versions of the php package andreapollastri/larapilot. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package larapilot

Larapilot

From product idea to reviewed Laravel code β€” with an AI product team that follows a real process.

Larapilot is a spec-driven workflow for Laravel projects, integrated with Laravel Boost. Install the package, run /larapilot-* skills in your AI editor, and ship backlog artifacts, plans, and reviewed code from .larapilot/.

The agent proposes. You approve what ships. Human-in-the-loop, always.

πŸ“– Documentation: larapilot.web.ap.it Β· Walkthrough Β· API


Why Larapilot

AI agents are fast, but isolated prompts are not a product process. Larapilot gives your assistant a disciplined squad β€” discovery β†’ backlog β†’ plan β†’ implement β†’ review β†’ ship β€” with 30 personas (Mark, John, Mike, Lucille, Sarah for CLI/Git/Linux, Alex, Anne, …) as review lenses, not costumes. Packages (PHP/Laravel Composer) are a first-class Project Kind beside apps and sites.

Each skill orchestrates the conversation. Artisan commands persist state; Boost skills drive the workflow in chat; MCP exposes Laravel context and workflow tools to your editor.


Core loop

Greenfield β€” repeat steps 3–5 per user story:

When Start with
New product, site, app, PHP/Laravel package, pivot, or legacy rewrite /larapilot-inception
One new capability on an existing product /larapilot-feature "…"
Defect or regression /larapilot-bug "…"

Optional: /larapilot-design before plan Β· /larapilot-ship when MVP stories are DONE Β· /larapilot-autopilot to batch plan + implement Β· /larapilot-settings for project effort / backlog granularity / git / testing modes Β· /larapilot-backstage to publish the repo into a Backstage developer portal.

Git discipline follows settings.git_mode (default Gitflow without auto-push): one feature/US-XXX-* branch per story, atomic commits per plan task; push + remote PR only when mode is GITFLOW_PUSH. Optional forge toggles github / gitlab / bitbucket (default OFF) add PR/MR URLs via gh, glab, or Bitbucket Cloud API; optional Slack/Discord/Telegram notifications (default OFF) cover task/spec/PR/schedule/ship events β€” see .larapilot/integrations.md. Configure with /larapilot-settings. Details on the docs site.


What lands in .larapilot/

Path Purpose
config.yaml Project workflow config + settings (effort, backlog, git_mode, testing, auto_approve, lucille, optional github / gitlab / bitbucket / notifications / notify_*)
integrations.md Setup guide for optional GitHub / GitLab / Bitbucket + Slack / Discord / Telegram
docs/PRD.md Product Requirements Document
backlog/ User stories (US-XXX) with status machine
plans/ Technical plans and tasks per spec
mockups/{spec}/ Static HTML previews (optional)
internal-feedback/{code}.md PM/dev comments until DONE
design-systems/ Packaged references (Filament, Starter Kit, Bootstrap 5, Tailwind, AdminLTE)
techdocs/ Generated Backstage TechDocs sources (only after larapilot:backstage-export --write)

Skills write artifacts; the workflow engine blocks invalid state transitions (e.g. implement before plan, approve before review, approve with open [blocks-merge] feedback or unfinished tasks β€” override with --force).

Two configuration layers

Layer File Owns Changed via
Laravel config config/larapilot.php (publishable) + .env Environment toggles: routes, diagnostics, LARAPILOT_API_TOKEN, notification webhooks/tokens, package defaults php artisan vendor:publish --tag=larapilot-config, env vars
Project workflow .larapilot/config.yaml (committed) Per-project settings (effort, backlog, git, testing, auto-approve, lucille, github/gitlab/bitbucket, notifications), paths, statuses /larapilot-settings or php artisan larapilot:settings-set

The YAML wins for workflow settings; Laravel config only provides their defaults on first install.


Skills

Published via Laravel Boost after php artisan boost:install:

Skill Role
/larapilot-inception Product discovery β†’ PRD (includes Frontend Topology)
/larapilot-spec MoSCoW backlog from PRD
/larapilot-feature Mini-inception for one evolutiva
/larapilot-bug Bug triage β†’ fix spec or rework
/larapilot-frontend-companion Link external FE repo path, scan code β€” from Laravel only
/larapilot-design Static HTML mockups from design system
/larapilot-plan Technical plan + tasks for a spec
/larapilot-implement Code + tests on a feature branch
/larapilot-review Human gate β†’ DONE or rework
/larapilot-ship Release checklist when MVP is done
/larapilot-autopilot Batch plan + implement
/larapilot-settings Persist effort / backlog / git / testing / auto-approve / lucille / GitHubΒ·GitLabΒ·Bitbucket / notification channels
/larapilot-usage Lucille β€” query time/token ledger, deadlines, export Markdown resoconto
/larapilot-backstage Publish the repo into a Backstage developer portal (catalog entity + TechDocs)
/larapilot-tracker Mirror the backlog into Linear Β· Asana Β· Jira Β· Trello Β· ClickUp Β· Monday

During inception, John + Joe ask Frontend Topology: Laravel-coupled, SPA-in-Laravel, or API + external frontend. For split-repo: larapilot:frontend-set --path=…, then frontend-scan β€” all from Laravel. Details: Frontend companion.


Dashboard & API (dev/staging)

When the dashboard is browsable (never in production):

API auth: set LARAPILOT_API_TOKEN to require a bearer token (or X-Larapilot-Token header) on every /larapilot/api/* request β€” strongly recommended on shared staging hosts. Without a token, reads stay open in the allowed environments, but writes are refused outside local/development/testing.

Diagnostics (bug triage)

Read-only runtime snapshot for /larapilot-bug and local debugging β€” never mutates workflow state.

Surface How
API GET /larapilot/api/diagnostics β€” same dashboard gate (dev/staging only); 404 when LARAPILOT_DIAGNOSTICS_ENABLED=false
CLI php artisan larapilot:diagnostics β€” --lines= (cap log tail), --no-logs (status + checks only)
MCP Larapilot diagnostics tool, or RunArtisanTool with larapilot:diagnostics

Query params (API): ?lines=100 (default from config, capped by max_log_lines) Β· ?no_logs=1 to omit the log tail.

Payload: app (name, env, Laravel/PHP versions, …), checks (storage_writable, cache, database, queue, log_file), healthy (critical checks), optional logs with secrets redacted ([REDACTED]).

Config (config/larapilot.php / env): LARAPILOT_DIAGNOSTICS_ENABLED (default true), LARAPILOT_DIAGNOSTICS_LOG_LINES (default 100), LARAPILOT_DIAGNOSTICS_MAX_LOG_LINES (default 500).

Workflow state still changes only via skills or Artisan β€” not from the dashboard or API.


Frontend companion β€” split repo

When Frontend Topology is API + external frontend, Laravel is the only Larapilot cockpit. PRD, backlog, plans, and all /larapilot-* commands run in the backend workspace. The FE repo is a linked write target configured with an absolute path.

How it works

  1. Inception records topology and asks for the FE absolute path β†’ larapilot:frontend-set.
  2. Scan (larapilot:frontend-scan) reads existing FE structure before planning evolutive work.
  3. Spec β†’ plan β†’ implement run on Laravel. UI tasks use repo: frontend and write under data.frontend.repo_path.

Setup commands

Or /larapilot-frontend-companion in the Laravel editor.

Command Purpose
larapilot:frontend-set Persist frontend.repo_path (+ optional stack)
larapilot:frontend-scan Detect stack, tooling, structure, entrypoints

Details: Frontend companion.


Developer portal β€” Backstage

Larapilot is repo-level; Backstage is org-level. The integration publishes .larapilot/ into the portal β€” one way. The workspace stays the source of truth and workflow state never changes from Backstage.

Or run /larapilot-backstage, which asks for owner/system/lifecycle first and persists them to .env.

Generated Contents
catalog-info.yaml (repo root) Component entity + one API entity per OpenAPI contract found (storage/api-docs/api-docs.json, openapi.json, …)
mkdocs.yml (repo root) TechDocs config β€” docs_dir: .larapilot/techdocs, plugin techdocs-core
.larapilot/techdocs/ index.md (delivery snapshot), prd.md, backlog/index.md, backlog/US-XXX.md (spec + plan + tasks)

catalog-info.yaml and mkdocs.yml are never overwritten without --force β€” a project may already own them. Everything under .larapilot/techdocs/ is regenerated, and pages for deleted specs are pruned. --no-techdocs generates the catalog entity only.

Catalog identity lives in Laravel config / .env (not .larapilot/config.yaml β€” it describes the org catalog, not the delivery workflow):

Env var Default Purpose
LARAPILOT_BACKSTAGE_ENABLED true Master switch for the integration and its endpoints
LARAPILOT_BACKSTAGE_OWNER guests Backstage Group/User that owns the entity β€” set this, Backstage flags unresolvable owners
LARAPILOT_BACKSTAGE_SYSTEM β€” Parent System entity, when your org uses them
LARAPILOT_BACKSTAGE_LIFECYCLE experimental experimental Β· production Β· deprecated
LARAPILOT_BACKSTAGE_COMPONENT_TYPE service Backstage component type
LARAPILOT_BACKSTAGE_NAME slug of app.name Entity name override
LARAPILOT_BACKSTAGE_BASE_URL app.url Base URL for catalog links/annotations β€” non-production only
LARAPILOT_BACKSTAGE_TECHDOCS true Generate the TechDocs site
LARAPILOT_BACKSTAGE_WORKFLOW_API false Also register the dev-only Larapilot API as an API entity

Live delivery data

For a Backstage plugin or entity provider, two endpoints share the dashboard gate (dev/staging only):

Call them through the Backstage backend proxy so LARAPILOT_API_TOKEN stays server-side. The API returns 404 in production by design β€” if the portal cannot reach a dev/staging host, ship the committed catalog-info.yaml and TechDocs instead.

Keep the catalog fresh with a CI step on the default branch (--write --force) or by re-running /larapilot-backstage after PRD and backlog milestones. php artisan larapilot:config-show reports the current mapping under data.backstage.


Project trackers β€” Linear, Asana, Jira, Trello, ClickUp, Monday

Optional, API-key based. Mirrors the backlog into the tool the rest of the organisation already uses, so a PM or a client can follow delivery without opening backlog.yaml. .larapilot/ stays the source of truth β€” the tracker is a window, not a second workflow.

Or run /larapilot-tracker, which picks the provider, collects the credentials into .env, and checks the status map before the first push.

What gets mirrored

Larapilot Tracker
User story US-XXX Issue / task / card / item titled US-XXX β€” Title, with the spec body, priority, points, and epic
Plan task TASK-XX A native sub-issue, subtask, subitem, or checklist item β€” not a checklist buried in the description
Workflow status The provider's own column: workflow state, status, section, list, or status-column label
Provider Auth Destination Subtasks Status maps to
Linear personal API key team key sub-issues (parentId) workflow state
Jira (Cloud, REST v2) email + API token project key subtasks (parent) status, via a workflow transition
Asana personal access token project gid subtasks section (a DONE story is also marked complete)
Trello key + token board id checklist items list (board column)
ClickUp personal token pk_… list id subtasks (parent) list status
Monday API token board id subitems status-column label

Only one provider is active at a time (LARAPILOT_TRACKER_PROVIDER), but links are stored per provider, so switching tools β€” or switching back β€” never loses the mapping.

Direction: push writes, pull reports

Push is authoritative. Pull is a report: it reads remote state and lists drift, and changes the backlog only with --apply. Two things it will never do:

TODO and PLANNED mapping to the same column is normal and is not reported as drift. A remote status outside the map is reported as drift with no suggestion rather than guessed at.

Set LARAPILOT_TRACKER_PULL_COMMENTS=true to import tracker comments as internal feedback (non-blocking, imported once).

Configuration

Credentials live in .env only β€” never in .larapilot/, which is committed:

Env var Purpose
LARAPILOT_TRACKER_ENABLED Master switch (default false)
LARAPILOT_TRACKER_PROVIDER linear Β· asana Β· jira Β· trello Β· clickup Β· monday
LARAPILOT_TRACKER_SYNC_TASKS Mirror plan tasks as native subtasks (default true)
LARAPILOT_TRACKER_PULL_COMMENTS Import remote comments as internal feedback (default false)
LARAPILOT_LINEAR_API_KEY / _TEAM Linear key and team key (e.g. ENG)
LARAPILOT_JIRA_BASE_URL / _EMAIL / _API_TOKEN / _PROJECT Jira site, account, token, project key
LARAPILOT_ASANA_TOKEN / _PROJECT Asana PAT and project gid
LARAPILOT_TRELLO_KEY / _TOKEN / _BOARD Trello credentials and board id
LARAPILOT_CLICKUP_TOKEN / _LIST ClickUp token and list id
LARAPILOT_MONDAY_TOKEN / _BOARD / _DESCRIPTION_COLUMN Monday token, board, and the long-text column that carries the spec body

Status maps live in config/larapilot.php β†’ tracker.providers.{provider}.status_map. If a mapped column does not exist, the push fails and names the columns that do β€” Larapilot never creates columns in your tracker.

.larapilot/tracker.yaml holds the spec β†’ remote-id mapping. Commit it: without a shared map, every machine creates duplicate cards. It contains identifiers only, never credentials. php artisan larapilot:config-show reports the wiring under data.tracker, including whether credentials are present β€” never their values.


Requirements


Quickstart

larapilot:install also scaffolds Larastan level 5+ and Laravel Pint (phpstan.neon.dist, pint.json, Composer scripts, dev dependencies). Run php artisan larapilot:quality before merge; larapilot:doctor fails when the gate is missing.

Already on Boost? Refresh skills once:

Register MCP servers in your editor if needed:

First run in your editor:

Then /larapilot-spec, and the per-story loop above.

Upgrade

Runtime-only refresh (skip Boost republish): php artisan larapilot:update --skip-boost.

larapilot:update overwrites .larapilot/design-systems/ with the packaged references; pass --preserve-design-systems to keep local customizations.


Learn more


License

MIT Β© Andrea Pollastri


All versions of larapilot with dependencies

PHP Build Version
Package Version
Requires php Version ^8.3
illuminate/console Version ^12.0|^13.0
illuminate/contracts Version ^12.0|^13.0
illuminate/filesystem Version ^12.0|^13.0
illuminate/http Version ^12.0|^13.0
illuminate/routing Version ^12.0|^13.0
illuminate/support Version ^12.0|^13.0
laravel/boost Version ^1.0|^2.0
symfony/yaml Version ^7.0|^8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package andreapollastri/larapilot contains the following files

Loading the files please wait ...