Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add elmochilyas/laraskills --skill laravel-api-grpcgit clone --depth 1 https://github.com/elmochilyas/laraskillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/elmochilyas/laraskills/laravel-api-grpc)<a href="https://agentmods.dev/skills/elmochilyas/laraskills/laravel-api-grpc"><img src="https://agentmods.dev/badge/skills/elmochilyas/laraskills/laravel-api-grpc/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/elmochilyas/laraskills/laravel-api-grpc"><img src="https://agentmods.dev/badge/skills/elmochilyas/laraskills/laravel-api-grpc.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.03961 |
| Opus 5 | $0.00000 | $0.01980 |
| Sonnet 5 | $0.00000 | $0.00792 |
| Haiku 4.5 | $0.00000 | $0.00396 |
Grade A, and why
laravel-api-grpc scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 631 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Laravel 13 gRPC — Protocol Buffers & High-Performance Microservices
When to Use
Use this skill when implementing inter-service communication in Laravel 13 microservices architectures using gRPC. gRPC uses Protocol Buffers for binary serialization and HTTP/2 for transport, offering 5-10x better performance than REST/JSON for internal service communication. Best suited for microservices, internal APIs, high-throughput systems, and real-time systems. NOT for public browser APIs — REST remains simpler for external consumers.
gRPC vs REST Decision Matrix
┌─────────────────────────────┬────────┬────────┐
│ Criteria │ gRPC │ REST │
├─────────────────────────────┼────────┼────────┤
│ Payload size │ Small │ Large │
│ Serialization speed │ 10x │ 1x │
│ Schema enforcement │ Strict│ Loose │
│ HTTP version │ HTTP/2│ HTTP │
│ Browser support │ No* │ Yes │
│ Streaming │ Native│ SSE │
│ Learning curve │ Medium│ Low │
│ Debugging │ Hard │ Easy │
│ Code generation │ Auto │ Manual│
│ Multi-language │ Native│ Ad-hoc│
└─────────────────────────────┴────────┴────────┘
* Requires gRPC-Web or proxy (Envoy)
When to Use gRPC
✓ Internal microservice communication
✓ Real-time streaming (chat, events, logs)
✓ High-throughput systems
✓ Multi-language polyglot environments
✓ Systems requiring strong type safety
✓ Low-latency, high-performance paths
When to Avoid gRPC
✗ Public browser-facing APIs
✗ Simple CRUD applications
✗ Serverless functions (cold start overhead)
✗ When debugging transparency is critical
Protocol Buffers
Defining Proto Files
// proto/user.proto
syntax = "proto3";
package user.v1;
option php_namespace = "App\\Grpc\\User\\V1";
option php_metadata_namespace = "App\\Grpc\\User\\V1\\Metadata";
service UserService {
rpc GetUser (GetUserRequest) returns (User);
rpc ListUsers (ListUsersRequest) returns (ListUsersResponse);
rpc CreateUser (CreateUserRequest) returns (User);
rpc UpdateUser (UpdateUserRequest) returns (User);
rpc DeleteUser (DeleteUserRequest) returns (google.protobuf.Empty);
// Server streaming
rpc StreamUsers (ListUsersRequest) returns (stream User);
// Bidirectional streaming
rpc Chat (stream ChatMessage) returns (stream ChatMessage);
}
message User {
string id = 1;
string name = 2;
string email = 3;
UserRole role = 4;
google.protobuf.Timestamp created_at = 5;
}
enum UserRole {
USER_ROLE_UNSPECIFIED = 0;
USER_ROLE_ADMIN = 1;
USER_ROLE_EDITOR = 2;
USER_ROLE_VIEWER = 3;
}
message GetUserRequest {
string id = 1;
}
message ListUsersRequest {
int32 page_size = 1;
string page_token = 2;
string filter = 3;
}
message ListUsersResponse {
repeated User users = 1;
string next_page_token = 2;
int32 total_size = 3;
}
message CreateUserRequest {
string name = 1;
string email = 2;
UserRole role = 3;
}
message UpdateUserRequest {
string id = 1;
string name = 2;
string email = 3;
UserRole role = 4;
}
message DeleteUserRequest {
string id = 1;
}
message ChatMessage {
string user_id = 1;
string content = 2;
int64 timestamp = 3;
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 631 lines · 0 tokens per session scan A a9b9eebeb1bb
laravel-api-grpc is a skill published in the GitHub repository elmochilyas/laraskills (8 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,961 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
laravel-specialist
Build and configure Laravel 10+ applications, including creating Eloquent models and relationships, implementing Sanctum authentication, configuring Horizon queues, designing RESTful APIs with API resources, and building reactive interfaces with Livewire. Use when creating Laravel models, setting up queue workers…
create-powergrid-plugin
Create a complete PowerGrid plugin from scratch, including PHP class, Column macro, Blade view, Alpine.js component, and registration.
owl-admin-devtools-generator
A development guide for Owl Admin, a Laravel-based administration system, covering its code generator, API templates, relationships, and visual pages.
llamaindex-development
Expert guidance for LlamaIndex development including RAG applications, vector stores, document processing, query engines, and building production AI applications.
craftcms
Craft CMS 5 plugin and module development — extending Craft with PHP. Covers elements, element queries, services, models, records, controllers, migrations, queue jobs, console commands, field types, native fields, events, behaviors, Twig extensions, widgets, filesystems, permissions, project config, GraphQL, testing…
laravel-expert
Laravel & PHP Development Instructions for GitHub Copilot.