-
Notifications
You must be signed in to change notification settings - Fork 3
Standardize all agents: add browser tool + context7 MCP server #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
d873192
feat: add spatie/laravel-markdown-response research note
Copilot 9035844
fix: populate missing fields and add browser tool to laravel-package …
Copilot a2318ae
feat: add browser tool to mcp-research and skill-research agents
Copilot cd75423
feat: add context7 to mcp-research and skill-research agents
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 73 additions & 0 deletions
73
.steering/laravel-packages/spatie__laravel-markdown-response.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| --- | ||
| title: laravel-markdown-response | ||
| org: spatie | ||
| package: laravel-markdown-response | ||
| github_url: https://github.com/spatie/laravel-markdown-response | ||
| docs_url: https://spatie.be/docs/laravel-markdown-response/v1/introduction | ||
| composer_require: composer require spatie/laravel-markdown-response | ||
| author: Freek Van der Herten | ||
| announce_date: 2025-04-07 | ||
| latest_release: v1.1.0 (2026-02-22) | ||
| release_date: 2026-02-22 | ||
| laravel_news_url: https://laravel-news.com/serve-markdown-versions-of-your-laravel-pages-to-ai-agents | ||
| downloads_30d: | ||
| stars: 67 | ||
| tags: [laravel, packages, markdown, ai, ai-agents, llm, response, content-negotiation, llms-txt] | ||
| --- | ||
|
ChrisThompsonTLDR marked this conversation as resolved.
|
||
|
|
||
| # laravel-markdown-response | ||
|
|
||
| **A Laravel package that lets you serve Markdown versions of your web pages alongside standard HTML responses, enabling AI agents and LLM-powered tools to consume your content directly.** | ||
|
|
||
| ## Key Features | ||
| - Register routes that automatically have a `.md` Markdown counterpart | ||
| - Return `MarkdownResponse` instead of a standard view response to serve structured Markdown | ||
| - Supports content negotiation via `Accept` header and `.md` URL suffix | ||
| - Enables AI crawlers and agents to read your pages as clean Markdown | ||
| - Integrates seamlessly with existing Laravel route definitions | ||
| - Pair with `llms.txt` conventions for full AI-agent discoverability | ||
|
|
||
| ## Installation | ||
|
|
||
| ```bash | ||
| composer require spatie/laravel-markdown-response | ||
| ``` | ||
|
|
||
| ## Usage | ||
|
|
||
| Return a `MarkdownResponse` from any controller action: | ||
|
|
||
| ```php | ||
| use Spatie\LaravelMarkdownResponse\MarkdownResponse; | ||
|
|
||
| class DocsController extends Controller | ||
| { | ||
| public function show(string $slug): MarkdownResponse | ||
| { | ||
| $content = // fetch your Markdown content... | ||
|
|
||
| return new MarkdownResponse($content); | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| Or register a route with an automatic Markdown counterpart: | ||
|
|
||
| ```php | ||
| use Spatie\LaravelMarkdownResponse\MarkdownResponse; | ||
|
|
||
| Route::get('/docs/{slug}', function (string $slug) { | ||
| return new MarkdownResponse( | ||
| view: 'docs.show', | ||
| data: ['slug' => $slug], | ||
| ); | ||
| })->withMarkdownRoute(); | ||
| ``` | ||
|
|
||
| Visiting `/docs/introduction.md` (or sending `Accept: text/markdown`) will return the Markdown version; `/docs/introduction` returns the normal HTML view. | ||
|
|
||
| ## Resources | ||
| - [GitHub](https://github.com/spatie/laravel-markdown-response) | ||
| - [Docs](https://spatie.be/docs/laravel-markdown-response/v1/introduction) | ||
| - [Laravel News](https://laravel-news.com/serve-markdown-versions-of-your-laravel-pages-to-ai-agents) | ||
| - [[Laravel Packages]] | ||
|
ChrisThompsonTLDR marked this conversation as resolved.
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.