docs: update skill files to keep user-facing docs in sync#139
Merged
Conversation
- skills/evlog/SKILL.md: fix Hono section (new evlog/hono middleware, remove incorrect useLogger import), add Express, Fastify, Elysia sections with setup, useLogger(), and drain/enrich/keep examples, update frontmatter description - .agents/skills/create-framework-integration/SKILL.md: replace Step 9 (AGENTS.md) with skills/evlog/SKILL.md as the target for user-facing framework docs, add Step 10 for README.md updates, renumber steps to 15 - .agents/skills/create-adapter/SKILL.md: replace Step 7 (AGENTS.md) with skills/evlog/SKILL.md Drain Adapters table - .agents/skills/create-enricher/SKILL.md: replace Step 5 (AGENTS.md) with skills/evlog/SKILL.md Built-in enrichers line Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
|
Thank you for following the naming conventions! 🙏 |
commit: |
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.
Summary
skills/evlog/SKILL.md: fix Hono section (replace oldcreateRequestLoggermanual approach withevlog/honomiddleware, remove incorrectuseLoggerimport since Hono doesn't export it), add Express, Fastify, and Elysia sections with setup snippet +useLogger()+ drain/enrich/keep pipeline, update frontmatter descriptioncreate-framework-integration/SKILL.md: Step 9 now targetsskills/evlog/SKILL.mdinstead ofAGENTS.md; new Step 10 added forpackages/evlog/README.md; steps renumbered to 15 totalcreate-adapter/SKILL.md: Step 7 now targetsskills/evlog/SKILL.mdDrain Adapters tablecreate-enricher/SKILL.md: Step 5 now targetsskills/evlog/SKILL.mdBuilt-in enrichers lineContext
Since the last few framework integrations (Hono middleware, Express, Elysia, Fastify), new content was being added to
AGENTS.mdinstead of the public user-facing skill. This PR fixes the root cause (internal dev skills now point to the right file) and catches up the public skill with all missing frameworks.Note:
AGENTS.mdandpackages/evlog/README.mdfixes (Hono update, Express/Fastify/Elysia additions, self-updating guidelines) were committed directly tomainin b93d6db.