Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问clear审计未展示

laravel_debugging-promptsLaravel 调试 prompts

Agent Skill

用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。它适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。使用时需要保留真实业务约束,不要把示例当硬规则;涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。

总安装

1,056

周安装

44

GitHub Stars

公开资料未说明

下载量

352
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:laravel_debugging-prompts(Laravel 调试 prompts)
来源仓库:https://github.com/jpcaparas/superpowers-laravel
仓库路径:skills/laravel_debugging-prompts
安装命令:
npx skills add jpcaparas/superpowers-laravel --skill "laravel:debugging-prompts"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add jpcaparas/superpowers-laravel --skill "laravel:debugging-prompts"

简介

用于辅助提示词和系统指令整理,适合规范 Agent 行为约束场景。

  • 支持统一输出格式、拆分操作步骤和优化提示词可复用性。
  • 通过 npx skills add 命令安装,需确认业务约束后再使用。
  • 安装前应核实是否会触发自动执行或高风险操作。
  • laravel_debugging-prompts 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Debugging Prompts

Debugging with AI requires complete information. Missing context means generic suggestions that don't solve your specific problem.

Error Messages and Stack Traces

Incomplete

"Getting an error in the payment controller"

Complete

"Getting error when processing payment:

Error:

Illuminate\Database\QueryException: SQLSTATE[23000]:
Integrity constraint violation: 1452 Cannot add or update a child row:
a foreign key constraint fails (`app`.`payments`, CONSTRAINT `payments_order_id_foreign`
FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE)

Stack trace:

#0 app/Services/PaymentService.php(45): Payment::create()
#1 app/Http/Controllers/PaymentController.php(28): PaymentService->process()
#2 vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54)

Context:

  • Laravel 11.x, MySQL 8.0
  • Happens when order_id doesn't exist in orders table
  • Payment data: ['order_id' => 999, 'amount' => 5000, 'status' => 'pending']
  • Order 999 doesn't exist in database"

Why it works: Complete error, stack trace, context, and the specific data causing the issue.

Expected vs Actual Behavior

Vague

"The API isn't returning the right data"

Specific

"Product API returning incorrect data:

Expected behavior:

{
  "data": {
    "id": 1,
    "name": "Widget",
    "price": "29.99",
    "category": {
      "id": 5,
      "name": "Tools"
    }
  }
}

Actual behavior:

{
  "data": {
    "id": 1,
    "name": "Widget",
    "price": 2999,
    "category": null
  }
}

Issues:

  1. Price is in cents (2999) instead of formatted dollars ("29.99")
  2. Category is null even though product has category_id = 5

Code:

// ProductController@show
return new ProductResource($product);

Product has category_id = 5 in database, but relationship not loading."

Why it works: Shows exact expected vs actual output, identifies specific issues, includes relevant code.

Log Entries and State

Insufficient

"Something's wrong with the queue"

Sufficient

"Job failing in queue:

Log entries:

[2024-01-15 10:30:15] local.ERROR: Job failed: ProcessOrderJob
{"order_id":123,"exception":"Stripe\\Exception\\InvalidRequestException:
No such customer: cus_invalid","attempts":3}

[2024-01-15 10:30:15] local.INFO: Order state before job
{"id":123,"status":"pending","stripe_customer_id":"cus_invalid"}

Job code:

public function handle()
{
    $customer = $this->stripe->customers->retrieve(
        $this->order->stripe_customer_id
    );
    // ...
}

State:

  • Order 123 has stripe_customer_id = "cus_invalid"
  • Customer doesn't exist in Stripe
  • Job has retried 3 times, now in failed_jobs table
  • Using Laravel 11.x with Horizon"

Why it works: Includes logs, state information, relevant code, and context about retries.

Hypotheses and Evidence

Weak

"I think it's a caching issue"

Strong

"Suspect Redis cache is stale:

Hypothesis: Product prices are cached but not invalidating on update.

Evidence:

  1. Updated product price in database: UPDATE products SET price = 3999 WHERE id = 1
  2. Database shows: SELECT price FROM products WHERE id = 13999
  3. API returns old price: GET /api/products/1"price": "29.99"
  4. After php artisan cache:clear, API returns correct price: "price": "39.99"

Caching code:

public function show(Product $product)
{
    $cached = Cache::remember("product.{$product->id}", 3600, function () use ($product) {
        return new ProductResource($product);
    });
    return $cached;
}

Problem: Cache key doesn't invalidate when product updates. Need cache invalidation in ProductObserver or remove caching from show method."

Why it works: Clear hypothesis, concrete evidence, relevant code, proposed solution.

Attempted Solutions

Unhelpful

"I tried some things but nothing worked"

Helpful

"Attempted solutions and results:

Attempt 1: Added eager loading

$products = Product::with('category')->get();

Result: Still getting N+1 queries. Debugbar shows 101 queries (1 for products, 100 for categories).

Attempt 2: Used load() after fetching

$products = Product::all();
$products->load('category');

Result: Same issue, still 101 queries.

Attempt 3: Checked relationship definition

// In Product model
public function category()
{
    return $this->belongsTo(Category::class);
}

Result: Relationship looks correct. Foreign key category_id exists in products table.

Current state: Eager loading syntax seems correct but not working. Using Laravel 11.x. What am I missing?"

Why it works: Shows what was tried, exact code used, results observed, helps avoid suggesting already-tried solutions.

Debugging Templates

Template: Error Report

**Error:** [Full error message]
**Stack trace:** [Complete stack trace]
**File/Line:** [Where error occurs]
**Context:** [Laravel version, packages, environment]
**Data:** [Input data causing error]
**Expected:** [What should happen]

Template: Unexpected Behavior

**Expected:** [Describe expected behavior with example]
**Actual:** [Describe actual behavior with example]
**Code:** [Relevant code snippet]
**State:** [Database state, variable values]
**Environment:** [Laravel version, Sail/host, packages]

Template: Performance Issue

**Problem:** [Describe slow operation]
**Metrics:** [Response time, query count, memory usage]
**Query log:** [Slow queries from Debugbar/Telescope]
**Code:** [Code causing performance issue]
**Dataset size:** [Number of records involved]
**Attempted:** [Optimizations already tried]

Quick Reference

Debug effectively with AI:

  • Complete errors - Full message, stack trace, file/line
  • Show both sides - Expected vs actual behavior
  • Include logs - Error logs, info logs, state dumps
  • Share evidence - Database queries, API responses, variable dumps
  • Document attempts - What you tried, exact code, results
  • Provide context - Laravel version, environment, packages

More information = faster solutions. When debugging, over-communicate.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

25.85%
按下载量换算91

Antigravity

24.89%
按下载量换算88

OpenCode

15.48%
按下载量换算54

Gemini CLI

11.76%
按下载量换算41

windsurf

7.69%
按下载量换算27

Codex

3.09%
按下载量换算11

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills