mentoring-inquiry-builder: Instructions file for Claude Code

CLAUDE.md

mentoring-inquiry-builder CLAUDE.md is an instructions file for Claude Code from marian-kamenistak/mentoring-inquiry-builder. It costs 1,388 tokens per session, scanned A, original, MIT.

A project-specific instruction file for Claude Code, describing a mentoring website's architecture, commands, booking flows, pricing rules, and external integrations. It gives the coding agent the context needed to work on that codebase.

In plain words
What is it for?
Use it when developing, testing, building, or deploying the mentoring inquiry builder, including its MCP server, chat backend, offer flow, and booking webhooks.
Why use it?
It reduces the chance that code changes will ignore important project rules, such as how offers are selected or how bookings are confirmed.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md.

This is marian-kamenistak/mentoring-inquiry-builder's own configuration. It tells Claude Code how to work on mentoring-inquiry-builder 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 mentoring-inquiry-builder configures →

Reuse

Borrowing it

Nothing to install: this file belongs to marian-kamenistak/mentoring-inquiry-builder. 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/marian-kamenistak/mentoring-inquiry-builder/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/marian-kamenistak/mentoring-inquiry-builder

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 mentoring-inquiry-builder CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/marian-kamenistak/mentoring-inquiry-builder/claude-md/github.svg)](https://agentmods.dev/instructions/marian-kamenistak/mentoring-inquiry-builder/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/marian-kamenistak/mentoring-inquiry-builder/claude-md"><img src="https://agentmods.dev/badge/instructions/marian-kamenistak/mentoring-inquiry-builder/claude-md/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 mentoring-inquiry-builder CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/marian-kamenistak/mentoring-inquiry-builder/claude-md"><img src="https://agentmods.dev/badge/instructions/marian-kamenistak/mentoring-inquiry-builder/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 1,388 This file is loaded in full into every session.
When invoked 1,388 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.01388 $0.01388
Opus 5 $0.00694 $0.00694
Sonnet 5 $0.00278 $0.00278
Haiku 4.5 $0.00139 $0.00139

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

Security

Grade A, and why

mentoring-inquiry-builder CLAUDE.md 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 6d 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.md · 58 lines

How it starts

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

mentoring-inquiry-builder

What this is

Mentoring AI Inquiry Wizard for the mc stream: authless MCP server at https://www.marian.coach/mcp/mentoring plus the chat backend for /mentoring-chat/ on marian.coach. get_started routes a greeting/test/unclear message to the right tool below; eight more walk a visitor from options to a formal itemized offer (10% AI-channel discount on every package, floor 296 EUR/session, prices computed server-side only) and then to a booked session. Read-only REST at /mcp/mentoring/api/openapi.json. Receives Reclaim booking webhooks on two routes, one per scheduling link.

Two exits (2026-08-30). Undecided → free intro (book_intro_call) → intro arranged. Agreed the price on an eligible package → paid first session (book_first_session) → formal 1st arranged, intro skipped. Eligibility is meta.first_session.eligible_offers in the catalog, never a hardcoded offer id; monthly, mentor-in-residence and any deal carrying a free-sessions concession are excluded because the catalog says Marian settles those on a call. check_booking confirms from Attio rather than from what the visitor claims.

Stack

  • Cloudflare Worker + Durable Object MentoringInquiryBuilder (MCP_OBJECT), McpAgent (agents ^0.17), streamable HTTP
  • TypeScript 6, zod 4, vitest 3, @posthog/mcp + posthog-node; chat via Claude API (CHAT_MODEL = claude-sonnet-5)
  • wrangler ^4.105, npm (pnpm lockfile also present)
  • Rate limiters OFFER_RATE_LIMITER (3001), CHAT_RATE_LIMITER (3002); cron */15 * * * * uptime + route-theft probe

Run / build / deploy / test

# dev:    npm run dev
# build:  npm run type-check
# test:   npm test                                   # vitest run (test/)
# tools:  npx vite-node scripts/tool.ts -- list      # persona harness, no side effects
# deploy: set -a && source ~/.env && set +a && npm run deploy   # runs secret-sync first

Sources of truth

Data Lives in Id / path
Package prices src/data/mentoring-catalog.json — byte-identical copy of business/mc/web/mc-web/src/data/mentoring-catalog.json (both generated by mc-web scripts/offers/sync.mjs from _mentoring/offers/catalog.yaml) src/core/catalog.ts imports it
Inquiries / bookings Attio People
Reclaim webhook shape _mentoring/reclaim-webhook.md + test/hooks.test.ts
Secrets (1Password → Worker) .op-secrets ANTHROPIC_API_KEY, ATTIO_TOKEN, RESEND_API_KEY (MC account), SLACK_WEBHOOK_URL, SLACK_BOT_TOKEN_ELC
Secrets (CF Secrets Store e5f76638…) wrangler.jsonc MC_TURNSTILE_SECRET, MC_BOOKING_HOOK_SECRET, MC_CHAT_SESSION_SECRET, MC_CLAIM_SECRET, MC_PREP_INVITE_SECRET
Unmanaged Worker secrets Cloudflare only MCP_USAGE_SLACK_CHANNEL, GA4_API_SECRET, GA4_MEASUREMENT_ID

Read the full file on GitHub · 58 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. 6d ago Changed · +1 lines · +25 tokens per session 095cb6456e0d
  2. 11d ago First seen · 57 lines · 1,363 tokens per session scan A d09d0704795d

Subscribe to this mod's changes

mentoring-inquiry-builder CLAUDE.md is an instructions file published in the GitHub repository marian-kamenistak/mentoring-inquiry-builder (0 stars, last pushed 7d ago), licensed MIT. It adds 1,388 tokens to every session, about $0.0069 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-31.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens