chimit/prompt
最新稳定版本:v1.0.0
Composer 安装命令:
composer require chimit/prompt
包简介
Manage AI prompts in Blade style.
README 文档
README
Prompt is a simple Laravel package for managing your AI prompts in Markdown files, with the full power of Blade.
Installation
You can install the package via composer:
composer require chimit/prompt
Usage
Create Your Prompts
Create your prompt files in the resources/prompts directory using the .md extension. You can organize them in subdirectories as needed:
resources/
└── prompts/
├── seo/
│ └── product-meta.md
└── welcome.md
Use Blade Syntax in Your Prompts
Your prompt files support full Blade syntax, including variables, PHP expressions, and unsafe HTML rendering. Here's an example resources/prompts/seo/product-meta.md:
You are an SEO expert specializing in e-commerce. Generate a compelling meta description for this product. **Product:** {{ $product->name }} **Price:** ${{ number_format($product->price, 2) }} **Product Description:** --- {!! $product->description !!} --- @if($product->discount_percentage > 0) **Special Offer:** {{ $product->discount_percentage }}% OFF - Limited Time! @endif Requirements: - Maximum 160 characters - Include the product name and key benefits - Create urgency if there's a discount - Target keywords: {{ implode(', ', $keywords) }}
Render Your Prompts
Use the Prompt::get() method to render your prompts with data, just like you would with Blade views:
use Chimit\Prompt; $prompt = Prompt::get('seo/product-meta', [ 'product' => $product, 'keywords' => ['wireless headphones', 'bluetooth', 'noise cancelling'] ]);
统计信息
- 总下载量: 1.67k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 39
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-09-28