Skip to content

Bundle an Agent Skills document inside @fedify/fedify#712

Merged
dahlia merged 9 commits intofedify-dev:mainfrom
dahlia:docs/skill
Apr 22, 2026
Merged

Bundle an Agent Skills document inside @fedify/fedify#712
dahlia merged 9 commits intofedify-dev:mainfrom
dahlia:docs/skill

Conversation

@dahlia
Copy link
Copy Markdown
Member

@dahlia dahlia commented Apr 22, 2026

Summary

Adds a SKILL.md at packages/fedify/skills/fedify/ and declares it through a new agents.skills field in packages/fedify/package.json, so that AI coding agents working inside a consumer project get project-local guidance on how to use Fedify. Tools implementing the Agent Skills spec, such as skills-npm, pick the skill up automatically from node_modules, keeping the guidance in sync with the installed Fedify version.

Closes #711.

Rationale

Fedify already ships llms.txt and llms-full.txt on fedify.dev, but those describe what the library is. A skill describes how to use it: which APIs to reach for, which patterns to avoid, which callout-level warnings in the docs are actually load-bearing. In practice, coding agents tend to reimplement /.well-known/webfinger or /.well-known/nodeinfo by hand, import from the deprecated @fedify/fedify/vocab shim, forget the queue option in production, or mint actor IDs against http://localhost:3000 when the process is behind a tunnel. All of those are things the existing docs already warn about; the skill collapses them into triggerable guidance that lands in the agent's context whenever it touches Fedify code.

What the skill covers

Following the checklist in #711:

  • Federation builder pattern (createFederationBuilder vs. createFederation), with a note that serverless runtimes such as Cloudflare Workers require the builder because bindings are per-request.
  • All dispatcher setters: actor, object, inbox (collection), outbox, followers, following, liked, featured, featured tags, NodeInfo, WebFinger, and the custom collection variants.
  • setInboxListeners() with the .on(ActivityType, handler) chain and the silent-ignore behaviour for unregistered types.
  • Context<TContextData> and RequestContext<TContextData>, with the recommendation to inject dependencies through the generic rather than module-level singletons.
  • Integration packages for 14 web frameworks and runtimes; mount-through-integration is positioned as the default rather than hand-rolled routing.
  • Built-in WebFinger and NodeInfo endpoints, with an explicit "do not reimplement" note.
  • ctx.sendActivity() overloads and the queue-in-production requirement.
  • Vocabulary imports from @fedify/vocab, with the deprecated shims (@fedify/fedify/vocab, @fedify/fedify/runtime, @fedify/fedify/webfinger) called out.
  • Key pair management via setKeyPairsDispatcher, and why you want both an RSA key (HTTP Signatures) and an Ed25519 key (Object Integrity Proofs).
  • KvStore / MessageQueue adapter packages (@fedify/sqlite, @fedify/postgres, @fedify/mysql, @fedify/redis, @fedify/amqp, @fedify/denokv) with a support matrix.
  • Observability: the eighteen fedify.* LogTape categories Fedify emits, plus OpenTelemetry setup via the tracerProvider option and FedifySpanExporter in @fedify/fedify/otel. The skill defers generic LogTape setup to LogTape's own skill when the consumer has it installed, so the two compose cleanly.
  • FEP lookup: instructs the agent to clone https://codeberg.org/fediverse/fep.git locally, because Codeberg blocks WebFetch-style scraping.
  • The fedify CLI (init, lookup, inbox, webfinger, nodeinfo, tunnel, relay).
  • A Common mistakes section distilled from the WARNING and CAUTION callouts across docs/, including the reverse-proxy / tunnel pitfall where Fedify mints actor URIs against the internal origin unless FederationOptions.origin is pinned or x-forwarded-fetch is wired into the request path.

The skill body links back to fedify.dev throughout rather than reproducing documentation content inline, so guidance stays current as the docs evolve.

Distribution

  • packages/fedify/package.json declares the skill via agents.skills. This is a metadata convention read by Agent Skills tooling; there is no new runtime dependency on @fedify/fedify.
  • "skills" is added to the files array so the directory ships in the npm tarball. Verified with npm pack --dry-run: the tarball lists skills/fedify/SKILL.md.
  • tsdown.config.ts, the root deno.json, and pnpm-workspace.yaml need no changes; the skill is a data directory, not a publishable package.
  • The follow-up Claude Code plugin that bundles this skill with slash commands and specialized agents remains tracked in Claude Code plugin for developing with Fedify #489.

Ship an Agent Skills document at packages/fedify/skills/fedify/SKILL.md
so that AI coding agents working inside a consumer project get
project-local guidance on how to use Fedify correctly, staying in sync
with the installed version.

The skill covers the Federation builder pattern, dispatcher callbacks
for actor/object/inbox/outbox/collection endpoints, inbox listeners,
Context and TContextData, the web framework integration packages,
built-in WebFinger and NodeInfo endpoints, outgoing activity delivery
and the message queue, vocabulary imports from @fedify/vocab (and away
from the deprecated shims), key pair management, persistent storage
adapters, LogTape categories, OpenTelemetry wiring, FEP lookup via a
Codeberg clone, the fedify CLI, and a list of common mistakes
distilled from the WARNING/CAUTION callouts across docs/.

Declare the skill in packages/fedify/package.json through the agents
field so tools such as skills-npm can discover it, and add "skills" to
the files field so it ships in the npm tarball.

fedify-dev#711

Assisted-by: Claude Code:claude-opus-4-7
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 22, 2026

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: 28af3ae0-7b82-4bd7-a826-29b6175ffb91

📥 Commits

Reviewing files that changed from the base of the PR and between 3157439 and d5c25b0.

📒 Files selected for processing (1)
  • packages/fedify/skills/fedify/SKILL.md

📝 Walkthrough

Walkthrough

Adds an Agent Skills bundle for Fedify: includes packages/fedify/skills/fedify/SKILL.md, declares the skill in packages/fedify/package.json via agents.skills, adds skills to the package files, and updates CHANGES.md with the Agent Skills changelog entry and reference links.

Changes

Cohort / File(s) Summary
Agent Skill doc
packages/fedify/skills/fedify/SKILL.md
New SKILL.md providing agent-focused usage guidance: builder/dispatcher patterns, inbox listeners, context typings, framework integrations, protocol endpoints, outbound delivery, key/storage requirements, observability, CLI helpers, and common mistakes.
Package manifest
packages/fedify/package.json
Added skills to the published files array and introduced a top-level agents.skills entry declaring { "name": "fedify", "path": "./skills/fedify" }.
Changelog
CHANGES.md
Updated Version 2.2.0 notes to announce the Agent Skills bundle and added reference link definitions ([Agent Skills], [skills-npm], [#711], [#712]).

Sequence Diagram(s)

(omitted — changes are documentation and packaging metadata; no new multi-component runtime control flow to illustrate)

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Suggested reviewers

  • sij411
  • 2chanhaeng
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title "Bundle an Agent Skills document inside @fedify/fedify" clearly and specifically summarizes the main change: adding and configuring a SKILL.md file with the Agent Skills declaration in package.json.
Description check ✅ Passed The description thoroughly explains the rationale, scope, and implementation details of adding an Agent Skills document, directly relating to all code changes in the pull request.
Linked Issues check ✅ Passed All coding requirements from issue #711 are comprehensively met: SKILL.md covers the builder pattern, all dispatcher setters, inbox listeners, Context/TContextData distinction, integration packages, built-in endpoints, sendActivity/queue, @fedify/vocab, key management, storage adapters, observability (LogTape and OpenTelemetry), FEP lookup, CLI helpers, and common mistakes. The package.json declares the skill via agents.skills and includes 'skills' in the files array for npm distribution.
Out of Scope Changes check ✅ Passed All changes are scoped to issue #711 objectives: CHANGES.md documents the feature, package.json adds metadata and distribution configuration, and SKILL.md provides the required guidance. No unrelated modifications were introduced.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@dahlia
Copy link
Copy Markdown
Member Author

dahlia commented Apr 22, 2026

@codex review

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces an 'Agent Skills' bundle for Fedify, which includes a comprehensive SKILL.md guide for AI coding agents and necessary metadata updates in package.json and CHANGES.md. The documentation covers essential topics such as the builder pattern, dispatchers, and framework integrations. Review feedback focused on ensuring npm package names are correctly formatted as inline code using backticks rather than italics, consistent with the project's Markdown standards.

Comment thread packages/fedify/skills/fedify/SKILL.md
Comment thread packages/fedify/skills/fedify/SKILL.md
Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
Comment thread packages/fedify/skills/fedify/SKILL.md
Comment thread packages/fedify/skills/fedify/SKILL.md
@dahlia dahlia added the type/documentation Improvements or additions to documentation label Apr 22, 2026
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds an Agent Skills bundle to the @fedify/fedify npm package so skill-aware AI coding tools can automatically load Fedify-specific usage guidance from node_modules.

Changes:

  • Added a new skills/fedify/SKILL.md Agent Skills document describing recommended Fedify APIs/patterns and common pitfalls.
  • Updated packages/fedify/package.json to ship the skills/ directory and declare the skill via agents.skills.
  • Documented the new distribution mechanism in CHANGES.md.

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.

File Description
packages/fedify/skills/fedify/SKILL.md Introduces the Fedify Agent Skills guidance document (API usage, integrations, pitfalls).
packages/fedify/package.json Ensures skills/ is included in the published tarball and exposes the skill via agents.skills.
CHANGES.md Adds a changelog entry announcing the bundled Agent Skills support and links.

Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
@chatgpt-codex-connector
Copy link
Copy Markdown

Codex Review: Didn't find any major issues. Already looking forward to the next diff.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@packages/fedify/skills/fedify/SKILL.md`:
- Around line 39-50: The doc incorrectly states both entry points return
Federation<TContextData>; update the first bullet to state that
createFederationBuilder<TContextData>() returns a FederationBuilder (not a
Federation), and clarify that you must call await builder.build(options) to
obtain the Federation; reference the symbols createFederationBuilder,
FederationBuilder, and build in the corrected wording and keep the second bullet
describing createFederation<TContextData>(options) as-is.
- Around line 287-294: Add a new row for the `@fedify/cfworkers` adapter in the
adapter matrix inside SKILL.md: include the package name `@fedify/cfworkers` and
mark both `KvStore` and `MessageQueue` as "yes" since this package provides
`WorkersKvStore` and `WorkersMessageQueue`; update the table alongside the other
adapters so the row reads like the others (package column then `yes` for both
capabilities).
- Around line 402-405: Update the bullet to stop referencing the non-existent
shim string "@fedify/fedify/webfinger" and instead warn against importing from
the old in-tree path "src/webfinger/"; keep the note that the only deprecated
shims are "@fedify/fedify/vocab" and "@fedify/fedify/runtime" and instruct users
to import from the dedicated packages "@fedify/vocab", "@fedify/vocab-runtime",
and "@fedify/webfinger" instead.
- Around line 211-216: The docs for ctx.sendActivity need to state the
limitation that the fan-out form (passing the literal "followers" as recipients)
cannot be used when the sender is a raw SenderKeyPair or SenderKeyPair[]; update
SKILL.md to document that when using the "followers" recipient you must supply a
sender that includes an actor identifier/username (not a raw keypair), because
ctx.sendActivity enforces this at runtime — mention the exact symbols:
ctx.sendActivity, "followers", SenderKeyPair, and SenderKeyPair[] so consumers
know to provide an actor id/username instead of a raw keypair to avoid generated
type-invalid delivery code.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: c5b8416b-bfd1-45d0-9ad5-7c00e1aec6c5

📥 Commits

Reviewing files that changed from the base of the PR and between c81afcf and 0eaa5f2.

📒 Files selected for processing (3)
  • CHANGES.md
  • packages/fedify/package.json
  • packages/fedify/skills/fedify/SKILL.md

Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
@codecov
Copy link
Copy Markdown

codecov Bot commented Apr 22, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ All tests successful. No failed tests found.
see 1 file with indirect coverage changes

🚀 New features to boost your workflow:
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

dahlia added 4 commits April 22, 2026 18:22
The Fedify skill claimed that both createFederationBuilder() and
createFederation() return a Federation<TContextData>, but the builder
returns a FederationBuilder<TContextData>; only .build() resolves to
Federation<TContextData>.  Rephrase so the distinction is clear.

Also soften the Cloudflare Workers guidance: the builder is the
documented approach because dispatcher registration can happen at
module load time, but technically createFederation() can also be
constructed inside the fetch handler.  Drop the "require" wording.

fedify-dev#712 (comment)
fedify-dev#712 (comment)

Assisted-by: Claude Code:claude-opus-4-7
The @fedify/fedify package only exports ./vocab and ./runtime as
deprecated shims; ./webfinger has never been a subpath export.  The
path agents should avoid is the old in-tree src/webfinger, not a
non-existent @fedify/fedify/webfinger entrypoint.  Rephrase the
common-mistakes bullet accordingly; the Vocabulary imports section
already described this correctly.

fedify-dev#712 (comment)
fedify-dev#712 (comment)

Assisted-by: Claude Code:claude-opus-4-7
@fedify/cfworkers ships both WorkersKvStore and WorkersMessageQueue
but was missing from the KvStore/MessageQueue support table in the
skill.  Add the row so agents running on Cloudflare Workers see it as
an option.

fedify-dev#712 (comment)

Assisted-by: Claude Code:claude-opus-4-7
The sendActivity overload that takes the literal "followers" as the
recipients parameter only accepts { identifier } or { username } as
the sender.  A raw SenderKeyPair or SenderKeyPair[] is rejected,
because Fedify needs the actor identifier to resolve the followers
collection URI.  The skill previously just noted the "followers"
shortcut without this restriction, which would let agents generate
code that fails at runtime.

fedify-dev#712 (comment)

Assisted-by: Claude Code:claude-opus-4-7
@dahlia dahlia requested a review from Copilot April 22, 2026 09:31
@dahlia
Copy link
Copy Markdown
Member Author

dahlia commented Apr 22, 2026

@codex review

@dahlia
Copy link
Copy Markdown
Member Author

dahlia commented Apr 22, 2026

/gemini review

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces an 'Agent Skills' bundle for Fedify, featuring a comprehensive SKILL.md file designed to guide AI coding agents in building ActivityPub-compliant applications. The changes also update package.json to declare the skill and CHANGES.md to document the addition. The review feedback identifies several Markdown formatting inconsistencies in the new documentation, specifically recommending that npm package names be formatted with backticks and file paths with italics to adhere to the repository's style guidelines.

Comment thread packages/fedify/skills/fedify/SKILL.md
Comment thread packages/fedify/skills/fedify/SKILL.md
Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
Comment thread packages/fedify/skills/fedify/SKILL.md
Comment thread packages/fedify/skills/fedify/SKILL.md
Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.

Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
@chatgpt-codex-connector
Copy link
Copy Markdown

Codex Review: Didn't find any major issues. Hooray!

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

dahlia added 2 commits April 22, 2026 18:38
Unregistered activity types are not "silently ignored" at the inbox.
handleInbox returns HTTP 202 Accepted to the sender, and routeActivity
in packages/fedify/src/federation/inbox.ts logs the activity at error
level as an unsupported type before giving up.  Reflect that so the
skill does not mislead agents into thinking the request disappeared
without a trace.

fedify-dev#712 (comment)

Assisted-by: Claude Code:claude-opus-4-7
Project Markdown convention wraps file paths in asterisks for italics;
the two in-tree src/webfinger mentions were using backticks.  Switch
them to *src/webfinger* so the formatting lines up with the rest of
the skill and the CONTRIBUTING.md Markdown guide.

fedify-dev#712 (comment)
fedify-dev#712 (comment)

Assisted-by: Claude Code:claude-opus-4-7
@dahlia dahlia requested a review from Copilot April 22, 2026 09:40
@dahlia
Copy link
Copy Markdown
Member Author

dahlia commented Apr 22, 2026

@codex review

@dahlia
Copy link
Copy Markdown
Member Author

dahlia commented Apr 22, 2026

/gemini review

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@packages/fedify/skills/fedify/SKILL.md`:
- Around line 436-438: Update the contradictory bullet so it matches the
behavior described earlier (lines 136–138): replace the phrase "silently
dropped" with wording that states unregistered inbox activity types are logged
as unsupported and the server returns HTTP 202 (Accepted). Keep the note about
registering handlers for specific activity types and, if you want delivery-level
handling, add an explicit suggestion to add a catch-all handler on `Activity` to
handle or requeue unsupported types. Ensure references to the `Activity`
catch-all and the behavior (log + HTTP 202) are present so the documentation is
consistent.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: 10aea6b8-bb8a-4903-857f-3a1f3ce2b7ee

📥 Commits

Reviewing files that changed from the base of the PR and between d26abb2 and 6ab329c.

📒 Files selected for processing (1)
  • packages/fedify/skills/fedify/SKILL.md

Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 3 out of 3 changed files in this pull request and generated no new comments.

@chatgpt-codex-connector
Copy link
Copy Markdown

Codex Review: Didn't find any major issues. You're on a roll.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces an 'Agent Skills' bundle for Fedify, designed to guide AI coding agents in using the library effectively. The changes include declaring the skill in package.json, updating the changelog, and adding a comprehensive SKILL.md file that covers core concepts like the builder pattern, dispatchers, and framework integrations. Feedback focused on ensuring that npm package names within the Markdown documentation are consistently formatted as inline code using backticks rather than italics, adhering to project style conventions.

Comment thread packages/fedify/skills/fedify/SKILL.md
Comment thread packages/fedify/skills/fedify/SKILL.md
Comment thread packages/fedify/skills/fedify/SKILL.md
Comment thread packages/fedify/skills/fedify/SKILL.md
Comment thread packages/fedify/skills/fedify/SKILL.md
Commit 417d12e corrected the inbox listener WARNING to say that
unregistered activity types are answered with HTTP 202 and logged as
unsupported, but the common-mistakes bullet at the bottom of the
skill still said "silently dropped", which contradicted the earlier
wording.  Bring the two descriptions in line.

fedify-dev#712 (comment)

Assisted-by: Claude Code:claude-opus-4-7
@dahlia dahlia requested review from 2chanhaeng and sij411 April 22, 2026 09:52
Copy link
Copy Markdown
Contributor

@2chanhaeng 2chanhaeng left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A little suggestion!

Comment thread packages/fedify/skills/fedify/SKILL.md Outdated
fedify.dev serves every documentation page as raw Markdown by
appending .md to its path, and fedify.dev/llms.txt already uses that
convention.  Agents can read the Markdown directly without HTML
rendering noise, so switch every fedify.dev/manual/... and
fedify.dev/cli link in the skill to the .md form.  Also add a short
note in the intro explaining the convention and telling agents to
strip the .md suffix when surfacing links to the end user, so the
browser view still resolves to the HTML page.

fedify-dev#712 (comment)
fedify-dev#712 (comment)

Assisted-by: Claude Code:claude-opus-4-7
@dahlia dahlia requested a review from 2chanhaeng April 22, 2026 11:25
@dahlia dahlia merged commit e9c2ef2 into fedify-dev:main Apr 22, 2026
16 of 17 checks passed
dahlia added a commit that referenced this pull request Apr 28, 2026
The installation page covered fedify init and manual JSR/npm
installation only.  Three new sections at the bottom close common
post-install questions:

- "Editor setup" shows the .vscode/ files fedify init writes for
  Deno and Node.js/Bun projects, points Zed users at the snippets
  they need to add by hand, and notes Oxc as an alternative to
  Biome and ESLint.
- "Linting" is a short bridge that mentions the @fedify/lint plugin
  is wired up automatically and links to the Linting chapter for
  the rest.
- "Agentic skill" documents the SKILL.md bundled inside @fedify/fedify
  starting with Fedify 2.2.0: skills-npm + a prepare script for
  Node.js/Bun, manual download via curl for Deno (with a forward
  pointer to the Claude Code plugin marketplace work).

#711
#712
#489

Assisted-by: Claude Code:claude-opus-4-7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

type/documentation Improvements or additions to documentation

Projects

No open projects

Development

Successfully merging this pull request may close these issues.

Agent skill for AI coding assistants

3 participants