mykg: Skill for Claude Code

.claude/skills/mykg-github-pages/SKILL.md

mykg-github-pages is a skill for Claude Code from SenolIsci/mykg. It costs 228 tokens per session (6,300 once invoked), scanned A, original, MIT.

A GitHub Pages publishing setup for the mykg repository. GitHub Pages is a service that hosts a website from a repository, while Jekyll turns Markdown and other source files into that website.

In plain words
What is it for?
Use it to create the mykg landing page, blog posts, and diagrams from the repository's README and pages folder, then deploy them through GitHub Actions to the gh-pages branch.
Why use it?
It keeps public-site content in a dedicated folder and automatically rebuilds and publishes it when relevant files change.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is SenolIsci/mykg's own configuration. It tells Claude Code how to work on mykg itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mykg configures →

Reuse

Borrowing it

Nothing to install: this file belongs to SenolIsci/mykg. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/SenolIsci/mykg/main/.claude/skills/mykg-github-pages/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/SenolIsci/mykg

Made for: Claude Code.

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 mykg-github-pages

README.md
[![agentmods](https://agentmods.dev/badge/skills/senolisci/mykg/mykg-github-pages.svg)](https://agentmods.dev/skills/senolisci/mykg/mykg-github-pages)
Your own site
<a href="https://agentmods.dev/skills/senolisci/mykg/mykg-github-pages"><img src="https://agentmods.dev/badge/skills/senolisci/mykg/mykg-github-pages.svg" alt="Measured on agentmods" height="20"></a>
Per session 228 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,300 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00228 $0.06300
Opus 5 $0.00114 $0.03150
Sonnet 5 $0.00046 $0.01260
Haiku 4.5 $0.00023 $0.00630

Measured 8d ago against content hash ea3b2b666373, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

mykg-github-pages scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

live `index.html` loads (curl returns `200`) — but the CSS `<link
.claude/skills/mykg-github-pages/SKILL.md · 463 lines

How it starts

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

mykg GitHub Pages

Publishes a purpose-built pages/ folder from the SenolIsci/mykg main branch as a website, via a GitHub Actions workflow that builds it with Jekyll and pushes the built _site/ output to a gh-pages branch, which is what GitHub Pages actually serves.

main branch                        gh-pages branch
├── src/       ← software          ├── index.html   ← built site
├── pages/     ← Pages source      ├── blog/...
│   ├── _config.yml                └── ...  (generated — never hand-edit)
│   ├── _posts/          (blog articles)
│   ├── index.md         (landing page, adapted from README.md)
│   └── diagrams/
└── .github/workflows/pages.yml

pages.yml: on push to main (pages/** changes) → jekyll build pages/ → _site/
           → peaceiris/actions-gh-pages pushes _site/ to gh-pages
Settings > Pages: source = gh-pages branch

Why a dedicated pages/ folder

A dedicated pages/ folder holds only content written for the public site, so there's never anything to accidentally publish. This skill's default and only source for initial content is README.md (see Step 1) — it never assumes any other folder in the repo is publishable. Any other repo artifact (a diagram, a logo, a screenshot, an existing doc) is fair game to feature on the site, but only when the user explicitly points at it — see "Sourcing artifacts from the repo" below. Don't scan the repo looking for content to publish; ask instead.

Check state before doing anything

gh api repos/SenolIsci/mykg/pages 2>&1
git ls-remote --heads origin gh-pages
cat .github/workflows/pages.yml 2>&1
ls pages/ 2>&1
  • No pages/ folder, no gh-pages branch, no workflow file → first-time setup. Do the full flow: Step 1 through Step 5.
  • pages/ and the workflow already exist → maintenance request (add a page, add a blog post, fix a failing build). Skip to the relevant section below.
  • Workflow exists but the last run failed → go straight to Troubleshooting.
  • Pages config exists but build_type is "workflow" while this repo deploys via a branch push (i.e. source.branch isn't reliably gh-pages, or the live URL 404s despite green Actions runs) → the misconfiguration described in Step 5/6 and Troubleshooting; fix with a PUT setting build_type=legacy before doing anything else.
  • build_type/source look correct, Actions runs are green, gh-pages has real content, but the live URL still 404s and gh api .../pages --jq .status is null → check whether .github/workflows/pages.yml's deploy step uses secrets.GITHUB_TOKEN instead of a PAT secret. See Step 4a and the matching Troubleshooting entry — this is a different bug from the build_type one above and looks identical from the outside.
  • The "Deploy to gh-pages" Actions step itself fails with remote: Permission ... denied / 403 on git push origin gh-pages → the PAT in the secret is fine-grained, not classic, or lacks the repo scope. See Step 4a — this repo's setup only worked with a classic PAT.
  • The live URL returns 200 and loads real HTML, but the page has no styling at all (default browser serif font, no colors, no layout — looks like the theme never applied) → check pages/_config.yml for baseurl: "/mykg". See Step 3 — missing baseurl on a project Pages site makes the CSS <link> resolve to the domain root instead of /mykg/... and 404 silently; nothing in the Actions build or Pages config flags this.

Read the full file on GitHub · 463 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 463 lines · 228 tokens per session scan A ea3b2b666373

Subscribe to this mod's changes

mykg-github-pages is a skill published in the GitHub repository SenolIsci/mykg (69 stars, last pushed 6d ago), licensed MIT. It adds 228 tokens to every session and 6,300 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

ontology-agent-suite

Orchestrate a hierarchical ontology engineering skill family for a specific domain. Use when the user wants end-to-end planning, team composition, research, ontology construction, validation, and release guidance grounded in competency questions, evidence, reuse-first modeling, and human review gates.

Mokee04/ontology_research · 57 tokens

ontology-planning-team

Plan a domain ontology effort by clarifying scope, composing the working team, defining competency questions, and setting risk and approval gates before research begins.

Mokee04/ontology_research · 34 tokens

ontology-research-team

Run the research stage for a domain ontology project by collecting primary sources, checking whether the needed data is actually collectible in practice, curating evidence, identifying reuse candidates, and writing research artifacts to the exe folder.

Mokee04/ontology_research · 47 tokens

ontology-build-team

Turn research outputs into a domain ontology draft using layered modeling, SKOS-first conceptualization, selective OWL formalization, and explicit modeling decisions tied back to evidence.

Mokee04/ontology_research · 37 tokens

ontology-ontology-architect

Design a domain ontology from evidence using layered modeling, stable concept definitions, explicit relations, SKOS-first structure, and selective OWL formalization with recorded modeling decisions.

Mokee04/ontology_research · 39 tokens

ontology-domain-intake

Clarify the target domain for ontology work by defining scope, users, constraints, out-of-scope areas, and approval points before modeling starts.

Mokee04/ontology_research · 34 tokens