laravel-altitude

作者 mischasigtermans已验证

Claude Code agents for the TALL stack, powered by Laravel Boost.

121
Stars
4
Forks
PHP
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/mischasigtermans/laravel-altitude

快速入门

使用 laravel-altitude 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Altitude

Latest Version on Packagist Total Downloads

Opinionated Claude Code agents and commands for TALL stack development.

Note: This package is opinionated. It assumes you're building with the TALL stack (Tailwind, Alpine, Livewire, Laravel) and optionally Filament, Flux UI, and Pest. If you use a different stack, this package may not be for you.

Altitude provides specialized AI agents that focus on decision-making and workflow patterns while Laravel Boost handles version-specific documentation via MCP.

Installation

composer require mischasigtermans/laravel-altitude --dev

Quick Start

Altitude syncs automatically when Laravel Boost runs boost:install or boost:update.

Recommended: Add to your composer.json scripts for automatic updates:

{
    "scripts": {
        "post-update-cmd": [
            "@php artisan boost:update --quiet"
        ]
    }
}

This keeps agents and documentation in sync whenever you run composer update.

Manual sync: For more control, run directly:

php artisan altitude:sync         # Sync new agents only
php artisan altitude:sync --force # Overwrite existing agents

How Syncing Works

On Install

When you install Altitude, agents sync automatically on the next console command if .claude/agents doesn't exist yet. This ensures you get agents immediately without needing to run a separate command.

On Boost Updates

When boost:install or boost:update runs, Altitude syncs with --force, updating all agents to the latest versions.

File Conflicts

Altitude agents use common names like architect, database, and livewire. If you have custom agents with the same names, they will be overwritten on boost updates.

To keep custom agents, use different names:

.claude/agents/
├── architect.md        # Altitude (will be updated)
├── my-architect.md     # Your custom version (safe)
└── project-rules.md    # Your custom agent (safe)

Alternatively, disable auto-sync and manage updates manually:

ALTITUDE_AUTO_SYNC=false

Why Altitude?

AI assistants need context about your stack to give good advice. But documentation changes between versions, and copy-pasting docs into prompts wastes tokens and goes stale.

Altitude solves this by:

  • Separating concerns — Agents handle decisions and workflow, Boost handles docs
  • Package-aware publishing — Only get agents for packages you actually use
  • Workflow commands — Common tasks like /ship, /test, /debug work out of the box
  • Never stale — Agents reference mcp__laravel-boost__search-docs instead of embedding version-specific code

Agents

Altitude publishes agents based on your installed packages:

Always Included

AgentPurpose
architectMulti-file features and architecture decisions
databaseSchema design, migrations, Eloquent models
docsDocumentation lookup via MCP tools
securitySecurity audits and vulnerability checks

Package-Specific

PackageAgents
livewire/livewirelivewire, alpine
livewire/fluxflux
filament/filamentfilament
pestphp/pestpest
laravel/reverbrealtime

How Agents Work

Each agent defines:

  1. Responsibilities — What it handles
  2. Decision guides — Common choices and tradeoffs
  3. Workflow — Steps to follow
  4. References — Points to mcp__laravel-boost__search-docs for implementation details

Example usage in Claude Code:

@architect I need to add a booking system with events, tickets, and payments
@livewire Create a component for filtering products by category
@database Design a schema for multi-tenant organizations with team members

Commands

Workflow commands are always published:

CommandPurpose
/shipCommit, push, and create pull request
/testRun tests related to current changes
/debugDebug using logs and application state
/reviewReview code for quality and security
/catchupResume work after a break
/pintFormat code with Laravel Pint

Command Examples

/ship "Add user profile page"
/test --all
/debug "500 error on checkout"

Optional: Enhanced Debugging

Herd Pro

If you're using Laravel Herd Pro, the /debug command can access logs and dumps via MCP:

ToolPurpose
mcp__herd__get-logsApplication logs
mcp__herd__get-dumpsDump output

Telescope MCP

If you have Laravel Telescope installed, add the MCP wrapper for Claude access:

composer require lucianotonet/laravel-telescope-mcp --dev
ToolPurpose
mcp__laravel-telescope__requestsHTTP requests with exceptions
mcp__laravel-telescope__exceptionsStack traces and error details
mcp__laravel-telescope__queriesSlow and failed database queries
mcp__laravel-telescope__jobsFailed queue jobs
mcp__laravel-telescope__logsApplication logs
mcp__laravel-telescope__mailSent emails

Without these tools, /debug falls back to reading storage/logs/laravel.log.

What Gets Published

.ai/
└── guidelines/
    └── tall-stack.md          # Stack overview and conventions

.claude/
├── agents/
│   ├── alpine.md              # Alpine.js interactivity
│   ├── architect.md           # Architecture decisions
│   ├── database.md            # Schema and migrations
│   ├── docs.md                # Documentation lookup
│   ├── filament.md            # Filament admin panels
│   ├── flux.md                # Flux UI components
│   ├── livewire.md            # Livewire components
│   ├── pest.md                # Testing with Pest
│   ├── realtime.md            # WebSockets with Reverb
│   └── security.md            # Security auditing
└── commands/
    ├── catchup.md             # Resume after break
    ├── debug.md               # Debug with logs/Telescope
    ├── pint.md                # Code formatting
    ├── review.md              # Code review
    ├── ship.md                # Commit and PR workflow
    └── test.md                # Run related tests

Configuration

Publish the config to customize:

php artisan vendor:publish --tag=altitude-config
// config/altitude.php
return [
    // Disable auto-sync on boost:install/update
    'auto_sync' => env('ALTITUDE_AUTO_SYNC', true),

    // Map packages to agents
    'agents' => [
        'livewire/livewire' => ['livewire', 'alpine'],
        'livewire/flux' => ['flux'],
        'filament/filament' => ['filament'],
        'pestphp/pest' => ['pest'],
        'laravel/reverb' => ['realtime'],
    ],

    // Agents always published
    'always' => [
        'architect',
        'database',
        'docs',
        'security',
    ],

    // Commands always published
    'always_commands' => [
        'ship',
        'test',
        'debug',
        'review',
        'catchup',
        'pint',
    ],
];

Re-syncing

When you add packages, re-run sync to get their agents:

composer require filament/filament
php artisan altitude:sync

Use --force to update existing agents with latest versions:

php artisan altitude:sync --force

Use Cases

New Feature Development

@architect I need to add a document management system with versioning
@livewire Create the upload component based on the architecture plan

Debugging Production Issues

/debug "500 error on checkout page"

Code Review Before PR

/review
/ship "Add document versioning"

Resuming After a Break

/catchup

Requirements

  • PHP 8.2+
  • Laravel 11 or 12
  • Laravel Boost (installed automatically)

Credits

License

MIT

常见问题

What is laravel-altitude?

laravel-altitude is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by mischasigtermans. Claude Code agents for the TALL stack, powered by Laravel Boost. It has 121 GitHub stars.

Is laravel-altitude safe to use?

Yes. laravel-altitude passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install laravel-altitude?

Clone the repository with "git clone https://github.com/mischasigtermans/laravel-altitude" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is laravel-altitude written in?

laravel-altitude is primarily written in PHP. It is open-source under mischasigtermans on GitHub, so you can review or fork the full source.

Are there alternatives to laravel-altitude?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh laravel-altitude against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情