kirby-collections-and-navigation

kirby-collections-and-navigation is a skill for Claude Code, Codex from bnomei/kirby-mcp. It costs 37 tokens per session (600 once invoked), scanned A, original, MIT.

Reusable Kirby patterns for displaying and navigating groups of content, including pagination, search, filtering, sorting, grouping, and menus. Kirby is a content management system that uses templates and controllers.

In plain words
What is it for?
Use it to build Kirby listings, paginated pages, search results, filtered or sorted collections, grouped content views, and navigation menus.
Why use it?
It keeps collection-building logic in one place and avoids repeating the same code in templates. It also covers empty states and active navigation so content pages handle common cases clearly.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build Kirby listings, paginated pages, search results, filtered or sorted collections, grouped content views, and navigation menus.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bnomei/kirby-mcp/kirby-collections-and-navigation
Install

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.

Any agent
npx skills add bnomei/kirby-mcp --skill kirby-collections-and-navigation
Clone the repo
git clone --depth 1 https://github.com/bnomei/kirby-mcp

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for kirby-collections-and-navigation

README.md
[![agentmods](https://agentmods.dev/badge/skills/bnomei/kirby-mcp/kirby-collections-and-navigation/github.svg)](https://agentmods.dev/skills/bnomei/kirby-mcp/kirby-collections-and-navigation)
Your own site
<a href="https://agentmods.dev/skills/bnomei/kirby-mcp/kirby-collections-and-navigation"><img src="https://agentmods.dev/badge/skills/bnomei/kirby-mcp/kirby-collections-and-navigation/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.

agentmods 80×15 button for kirby-collections-and-navigation

Your own site · 80×15
<a href="https://agentmods.dev/skills/bnomei/kirby-mcp/kirby-collections-and-navigation"><img src="https://agentmods.dev/badge/skills/bnomei/kirby-mcp/kirby-collections-and-navigation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 600 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.00600
Opus 5 $0.00018 $0.00300
Sonnet 5 $0.00007 $0.00120
Haiku 4.5 $0.00004 $0.00060

Measured 13d ago against content hash 9aae8bd7d20d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

kirby-collections-and-navigation 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 13d 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.

skills/kirby-collections-and-navigation/SKILL.md · 79 lines

How it starts

The opening of the file, as written. The whole thing — 79 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Kirby Collections and Navigation

KB entry points

  • kirby://kb/scenarios/07-pagination
  • kirby://kb/scenarios/08-search-page
  • kirby://kb/scenarios/09-filtering-with-tags
  • kirby://kb/scenarios/11-navigation-menus
  • kirby://kb/scenarios/23-collections-filtering

Required inputs

  • Collection source (page/section/template or ids).
  • Filters, sort order, and pagination size.
  • Target templates/snippets and UI expectations.

Default pattern

  • Keep collection building in the controller; return a single items collection and pagination.
  • Render items via a snippet to avoid repeated template logic.
  • Provide empty-state and active-navigation UI.
  • Default sort: use date desc when the field exists; otherwise fall back to title asc.

Example

Controller:

return function ($page) {
  $items = $page->children()->listed()->sortBy('date', 'desc')->paginate(10);
  return [
    'items' => $items,
    'pagination' => $items->pagination(),
  ];
};

Snippet:

<?php if ($items->isEmpty()): ?>
  <p>No items yet.</p>
<?php else: ?>
  <?php foreach ($items as $item): ?>
    <!-- render item -->
  <?php endforeach ?>
  <?php snippet('pagination', ['pagination' => $pagination]) ?>
<?php endif ?>

Output checklist

  • Ensure pagination URLs preserve filters and tags.
  • Render empty states without PHP notices.
  • Confirm active navigation matches the current page.

Common pitfalls

  • Dropping query params or tag filters on pagination links.
  • Implementing heavy collection logic in templates instead of controllers.

Workflow

  1. Clarify collection scope (site vs section), filters, sort order, and UI (pagination, tag filters, menu style).
  2. Call kirby:kirby_init and read kirby://roots.
  3. Inspect existing templates/controllers/snippets to reuse patterns:
    • kirby:kirby_templates_index
    • kirby:kirby_controllers_index
    • kirby:kirby_snippets_index
  4. Prefer controllers for collection logic; keep templates thin.
  5. Search the KB with kirby:kirby_search for task playbooks (examples: "pagination", "search page", "filtering with tags", "navigation menus", "collections filtering").
  6. Implement or adjust collection queries; add snippets for repeated UI.
  7. Verify rendering and pagination URLs with kirby:kirby_render_page(noCache=true).

Read the full file on GitHub · 79 lines

Changes

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.

  1. 13d ago First seen · 79 lines · 37 tokens per session scan A 9aae8bd7d20d

Subscribe to this mod's changes

kirby-collections-and-navigation is a skill published in the GitHub repository bnomei/kirby-mcp (59 stars, last pushed 13d ago), licensed MIT. It adds 37 tokens to every session and 600 once invoked, about $0.0002 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-08-30.

Related

Other skills, from other repositories

hipson-visual-experience-director

Use for visual direction, premium UI/UX art direction, motion interaction design, Codex-ready implementation briefs, and visual QA for web experiences.

Hipson47/Hipson · 38 tokens

hipson-premium-ui-ux

Use for premium UI/UX review and implementation planning in Hipson frontend projects, especially screenshot-backed landing pages, forms, visual polish, accessibility, responsive behavior, and design-agent packets.

Hipson47/Hipson · 45 tokens

cv-webapp-starter

Use when starting a Computer Vision web application with Next.js, FastAPI, browser MediaPipe, typed APIs, bounded uploads, and private media handling.

Hipson47/Hipson · 36 tokens

hipson-creative-frontend-motion-architect

Use for premium creative frontend, motion UI, scroll-driven animation, scrollytelling, cinematic landing pages, microinteractions, and implementation-ready prompts for React/Next.js frontend agents.

Hipson47/Hipson · 48 tokens

mediapipe-human-interface

Use when building browser or Python hand, gesture, face, or pose interactions with smoothing, semantic events, and privacy-preserving media handling.

Hipson47/Hipson · 34 tokens

figma-implement-design

Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions "implement design", "generate code", "implement component", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via…

Hipson47/Hipson · 81 tokens