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 thapaliyabikendra/ai-artifacts --skill grpc-integration-patternsgit clone --depth 1 https://github.com/thapaliyabikendra/ai-artifactsWrote 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/thapaliyabikendra/ai-artifacts/grpc-integration-patterns)<a href="https://agentmods.dev/skills/thapaliyabikendra/ai-artifacts/grpc-integration-patterns"><img src="https://agentmods.dev/badge/skills/thapaliyabikendra/ai-artifacts/grpc-integration-patterns/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/thapaliyabikendra/ai-artifacts/grpc-integration-patterns"><img src="https://agentmods.dev/badge/skills/thapaliyabikendra/ai-artifacts/grpc-integration-patterns.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.00069 | $0.04311 |
| Opus 5 | $0.00034 | $0.02155 |
| Sonnet 5 | $0.00014 | $0.00862 |
| Haiku 4.5 | $0.00007 | $0.00431 |
Grade A, and why
grpc-integration-patterns 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 7d 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 — 675 lines — stays where its author put it; the contents beside it link to each section on GitHub.
gRPC Integration Patterns
Master gRPC integration for high-performance inter-service communication in ABP Framework microservices architectures.
When to Use This Skill
- Building inter-service communication in microservices
- Implementing high-performance APIs with streaming
- Creating gRPC service endpoints alongside REST APIs
- Consuming gRPC clients in application services
- Handling multi-tenancy in gRPC context
- Designing real-time communication with bidirectional streaming
Why gRPC?
| Feature | REST | gRPC |
|---|---|---|
| Protocol | HTTP/1.1 JSON | HTTP/2 Protobuf |
| Performance | Good | Excellent (10x faster) |
| Contract | OpenAPI (optional) | Required (Protobuf) |
| Streaming | Limited | Full support |
| Code Gen | Optional | Built-in |
| Best for | Public APIs | Internal microservices |
Project Setup
1. NuGet Packages
<!-- In your gRPC host project -->
<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" Version="2.60.0" />
<PackageReference Include="Grpc.Tools" Version="2.60.0" PrivateAssets="All" />
</ItemGroup>
<!-- For client projects -->
<ItemGroup>
<PackageReference Include="Grpc.Net.Client" Version="2.60.0" />
<PackageReference Include="Google.Protobuf" Version="3.25.2" />
</ItemGroup>
2. Protobuf Definitions
// Protos/license_plate.proto
syntax = "proto3";
option csharp_namespace = "MyApp.Shared.Grpc";
package licenseplate;
// Service definition
service LicensePlateService {
// Unary RPC
rpc GetTenantIdByLPNumber (LicensePlateRequest) returns (LicensePlateResponse);
// Server streaming
rpc GetLicensePlates (GetLicensePlatesRequest) returns (stream LicensePlateDto);
// Client streaming
rpc ReceiveLicensePlates (stream ReceiveLicensePlateRequest) returns (ReceiveLicensePlateResponse);
// Bidirectional streaming
rpc SyncLicensePlates (stream LicensePlateSyncRequest) returns (stream LicensePlateSyncResponse);
}
// Messages
message LicensePlateRequest {
string lp_number = 1;
}
message LicensePlateResponse {
string tenant_id = 1;
bool found = 2;
}
message GetLicensePlatesRequest {
string tenant_id = 1;
string project_code = 2;
int32 page_size = 3;
int32 page_number = 4;
}
message LicensePlateDto {
string id = 1;
string license_plate_number = 2;
string project_code = 3;
string tag_mac = 4;
double length = 5;
double width = 6;
double height = 7;
double weight = 8;
string created_at = 9;
}
message ReceiveLicensePlateRequest {
string from_tenant_id = 1;
string to_tenant_id = 2;
repeated LicensePlateInput license_plates = 3;
}
message LicensePlateInput {
string license_plate_number = 1;
string project_code = 2;
string tag_mac = 3;
string sku_id = 4;
double length = 5;
double width = 6;
double height = 7;
double weight = 8;
}
message ReceiveLicensePlateResponse {
bool is_success = 1;
repeated ReceiveLicensePlateError errors = 2;
}
message ReceiveLicensePlateError {
string error = 1;
string field = 2;
int32 row_number = 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.
- 7d ago First seen · 675 lines · 69 tokens per session scan A 8445e17f17eb
grpc-integration-patterns is a skill published in the GitHub repository thapaliyabikendra/ai-artifacts (24 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 69 tokens to every session and 4,311 once invoked, about $0.0003 per session on Opus 5. 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-09-03.
Other skills, from other repositories
grpc-expert
Expert-level gRPC, Protocol Buffers, microservices communication, and streaming. Use when the user mentions Protocol Buffers, microservices, RPC, or streaming, or when the task involves gRPC Fundamentals, Communication Patterns, or Production Features.
gRPC Testing
You are an expert QA engineer specializing in grpc testing. When the user asks you to write, review, debug, or set up grpc related tests or configurations, follow these detailed instructions.
hunt-grpc
Hunt gRPC vulnerabilities — server reflection enabled (enumerate all services/methods), missing authentication / metadata-stripping on internal endpoints, plaintext gRPC over HTTP/2, internal endpoint disclosure, proto file leakage, gRPC-Web/grpc-gateway transcoding injection, and HTTP/2 Rapid Reset DoS…
api-design-patterns
Comprehensive API design patterns covering REST, GraphQL, gRPC, versioning, authentication, and modern API best practices.
lathe
Initialize CLI-first applications and keep their OpenAPI contract, generated CLI, and Agent Skill synchronized. Use when creating an application with lathe init or changing a Lathe-generated application.
backend-grpc-patterns
Use this skill when the user says 'gRPC', 'protobuf', 'protocol buffers', 'streaming RPC', 'unary call', 'server streaming', 'client streaming', 'bidirectional streaming', 'gRPC interceptor', 'gRPC error handling', 'protobuf schema', 'service definition', 'RPC design', or when designing gRPC APIs. This skill enforces…