google-calendar-mcp: Skill for Claude Code

.claude/skills/kiro-validate-impl/SKILL.md

kiro-validate-impl is a skill for Claude Code from takumi0706/google-calendar-mcp. It costs 31 tokens per session (2,458 once invoked), scanned A, original, MIT.

A final feature check that reviews how all completed tasks work together, not just each task on its own.

In plain words
What is it for?
Use it after implementation to run the full test suite, check data flow between components, compare the result with the specification, and find leftover or disconnected code.
Why use it?
It catches mismatched interfaces, missing requirements, conflicting code, and other problems that appear only after separate pieces are combined.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents.

This is takumi0706/google-calendar-mcp's own configuration. It tells Claude Code how to work on google-calendar-mcp 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 google-calendar-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to takumi0706/google-calendar-mcp. 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/takumi0706/google-calendar-mcp/main/.claude/skills/kiro-validate-impl/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/takumi0706/google-calendar-mcp

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 kiro-validate-impl

README.md
[![agentmods](https://agentmods.dev/badge/skills/takumi0706/google-calendar-mcp/kiro-validate-impl/github.svg)](https://agentmods.dev/skills/takumi0706/google-calendar-mcp/kiro-validate-impl)
Your own site
<a href="https://agentmods.dev/skills/takumi0706/google-calendar-mcp/kiro-validate-impl"><img src="https://agentmods.dev/badge/skills/takumi0706/google-calendar-mcp/kiro-validate-impl/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 kiro-validate-impl

Your own site · 80×15
<a href="https://agentmods.dev/skills/takumi0706/google-calendar-mcp/kiro-validate-impl"><img src="https://agentmods.dev/badge/skills/takumi0706/google-calendar-mcp/kiro-validate-impl.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,458 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.00031 $0.02458
Opus 5 $0.00015 $0.01229
Sonnet 5 $0.00006 $0.00492
Haiku 4.5 $0.00003 $0.00246

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

Security

Grade A, and why

kiro-validate-impl 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 12d 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.

.claude/skills/kiro-validate-impl/SKILL.md · 205 lines

How it starts

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

kiro-validate-impl Skill

Role

Individual tasks have already been reviewed by the per-task reviewer during implementation. Your job is to catch problems that only become visible when looking across all tasks together.

Boundary terminology continuity:

  • discovery identifies Boundary Candidates
  • design fixes Boundary Commitments
  • tasks constrain execution with _Boundary:_
  • feature validation checks for cross-task Boundary Violations

Core Mission

  • Success Criteria:
    • All tasks marked [x] in tasks.md
    • Full test suite passes (not just per-task tests)
    • Cross-task integration works (data flows between components, interfaces match)
    • Requirements coverage is complete across all tasks (no gaps between tasks)
    • Design structure is reflected end-to-end (not just per-component)
    • No orphaned code, conflicting implementations, integration seams, or boundary spillover

What This Skill Does NOT Do

Per-task checks are the reviewer's responsibility during /kiro-impl. This skill does not re-check:

  • Individual task acceptance criteria
  • Per-file reality checks (mock/stub detection)
  • Single-task spec alignment

This skill's main question is: when the completed tasks are viewed together, do they still respect the designed boundary seams and dependency direction?

Execution Steps

Step 1: Detect Validation Target

If no arguments provided:

  • Parse conversation history for /kiro-impl commands to detect recently implemented features and tasks
  • Scan .kiro/specs/ for features with completed tasks [x]
  • Report detected implementations (e.g., "user-auth: 1.1, 1.2, 1.3")

If feature provided (feature specified, tasks empty):

  • Use specified feature
  • Detect all completed tasks [x] in .kiro/specs/{feature}/tasks.md

If both feature and tasks provided (explicit mode):

  • Validate specified feature and tasks only (e.g., user-auth 1.1,1.2)

Step 2: Gather Context

If steering/spec context is already available from conversation, skip redundant file reads. Otherwise, for each detected feature:

  • Read .kiro/specs/<feature>/spec.json for metadata
  • Read .kiro/specs/<feature>/requirements.md for requirements
  • Read .kiro/specs/<feature>/design.md for design structure
  • Read .kiro/specs/<feature>/tasks.md for task list and Implementation Notes
  • Core steering context: product.md, tech.md, structure.md
  • Additional steering files only when directly relevant to the validated boundaries, runtime prerequisites, integrations, domain rules, security/performance constraints, or team conventions that affect the GO/NO-GO call

Read the full file on GitHub · 205 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. 12d ago First seen · 205 lines · 31 tokens per session scan A fb17e2c5eaa4

Subscribe to this mod's changes

kiro-validate-impl is a skill published in the GitHub repository takumi0706/google-calendar-mcp (59 stars, last pushed 25d ago), licensed MIT. It adds 31 tokens to every session and 2,458 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

research-engineer

An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.

davila7/claude-code-templates · 43 tokens

tika-eval-compare

Compare extracts from two Tika builds over a corpus to detect regressions in content, encoding, exceptions, and embedded-document handling. Use for "compare before/after extracts", "eval this change against the corpus".

apache/tika · 50 tokens

neuron-evaluation-engineer

Create and run AI evaluations with datasets, assertions, and output drivers in Neuron AI. Use this skill whenever the user mentions evaluation, testing AI systems, creating evaluators, dataset-driven testing, assertion-based validation, or wants to measure AI system performance. Also trigger for tasks involving…

neuron-core/neuron-ai · 77 tokens

jetson-validate-image

Use after jetson-flash-image to run static BSP checks, on-target smoke/regression tests on a flashed DUT, or both. Not for build or flash steps. Triggers: validate bsp, on-target validation.

NVIDIA/skills · 50 tokens

atmos-validation

Validate Atmos projects, components, arbitrary JSON Schema inputs, EditorConfig, and GitHub Actions; use affected-file selection and native CI annotations.

cloudposse/atmos · 31 tokens

skill-benchmark

Benchmark AI skill effectiveness by measuring implementation quality against legacy constraints.

HoangNguyen0403/agent-skills-standard · 16 tokens