lthn/agent

AI agent orchestration and MCP tools for Laravel

Maintainers

Package info

forge.lthn.ai/core/agent.git

pkg:composer/lthn/agent

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

dev-main 2026-03-09 18:05 UTC

This package is auto-updated.

Last update: 2026-03-09 18:05:58 UTC


README

A monorepo of Claude Code plugins for the Host UK federated monorepo.

Plugins

PluginDescriptionCommands
codeCore development - hooks, scripts, data collection/code:remember, /code:yes
reviewCode review automation/review:review, /review:security, /review:pr
verifyWork verification before commit/push/verify:verify, /verify:ready
qaQuality assurance fix loops/qa:qa, /qa:fix, /qa:check
ciCI/CD integration/ci:ci, /ci:workflow, /ci:fix

Installation

# Install all plugins via marketplace
claude plugin add host-uk/core-agent

# Or install individual plugins
claude plugin add host-uk/core-agent/claude/code
claude plugin add host-uk/core-agent/claude/review
claude plugin add host-uk/core-agent/claude/qa

Quick Start

# Code review staged changes
/review:review

# Run QA and fix all issues
/qa:qa

# Verify work is ready to commit
/verify:verify

# Check CI status
/ci:ci

Core CLI Integration

These plugins enforce the core CLI for development commands:

Instead of...Use...
go testcore go test
go buildcore build
golangci-lintcore go lint
composer testcore php test
./vendor/bin/pintcore php fmt

Plugin Details

code

The core plugin with hooks and data collection skills:

  • Hooks: Auto-format, debug detection, dangerous command blocking
  • Skills: Data collection for archiving OSS projects (whitepapers, forums, market data)
  • Commands: /code:remember (persist facts), /code:yes (auto-approve mode)

review

Code review automation:

  • /review:review - Review staged changes or commit range
  • /review:security - Security-focused review
  • /review:pr [number] - Review a pull request

verify

Work verification:

  • /verify:verify - Full verification (tests, lint, format, debug check)
  • /verify:ready - Quick check if ready to commit

qa

Quality assurance:

  • /qa:qa - Run QA pipeline, fix all issues iteratively
  • /qa:fix <issue> - Fix a specific issue
  • /qa:check - Check without fixing

ci

CI/CD integration:

  • /ci:ci - Check CI status
  • /ci:workflow <type> - Generate GitHub Actions workflow
  • /ci:fix - Analyse and fix failing CI

Development

Adding a new plugin

  1. Create claude/<name>/.claude-plugin/plugin.json
  2. Add commands to claude/<name>/commands/
  3. Add hooks to claude/<name>/hooks.json (optional)
  4. Register in .claude-plugin/marketplace.json

Testing locally

claude plugin add /path/to/core-agent

License

EUPL-1.2

Links