Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Thank you for following the naming conventions! 🙏 |
/create-adapter agent skill
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new “create adapter” agent skill with reference templates to standardize how new built-in evlog drain adapters are implemented, tested, and documented.
Changes:
- Introduces an Agent Skill guide (
SKILL.md) describing the 5 touchpoints required to add a new built-in adapter. - Adds a TypeScript adapter source template reference (
adapter-template.md). - Adds a Vitest adapter test template reference (
test-template.md).
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
.agents/skills/create-adapter/SKILL.md |
Step-by-step checklist for adding an evlog built-in adapter (source/build/exports/tests/docs/AGENTS). |
.agents/skills/create-adapter/references/adapter-template.md |
Annotated adapter implementation scaffold (config resolution, drain factory, send functions, timeout/error handling). |
.agents/skills/create-adapter/references/test-template.md |
Annotated Vitest scaffold for adapter URL/headers/body/error/batch/timeout coverage. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request adds comprehensive documentation and templates for creating new built-in adapters in the
evlogpackage. It introduces a step-by-step skill guide, a TypeScript adapter source template, and a test template, all designed to standardize and simplify the process of adding log drain adapters for external observability platforms. The main themes are process documentation, code scaffolding, and test coverage.