project-pulse CLAUDE.md

project-pulse CLAUDE.md is an instructions file for coding agents from Washingtonwei/project-pulse. It costs 2,679 tokens per session, scanned A, original, Apache-2.0.

Project instructions for Claude Code, an AI coding assistant, working on Project Pulse, a web app for managing student capstone projects.

In plain words
What is it for?
Starting, stopping, and developing Project Pulse; managing requirements written in Markdown; and following the project’s design-then-implementation workflow.
Why use it?
They give the assistant the project’s purpose, required services, commands, and rules for changing its requirements module, so it can work within the project’s established process.

Instructions file

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.

agentmods
npx agentmods add instructions/washingtonwei/project-pulse/claude-md
Clone the repo
git clone --depth 1 https://github.com/Washingtonwei/project-pulse

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 project-pulse CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/washingtonwei/project-pulse/claude-md.svg)](https://agentmods.dev/instructions/washingtonwei/project-pulse/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/washingtonwei/project-pulse/claude-md"><img src="https://agentmods.dev/badge/instructions/washingtonwei/project-pulse/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,679 This file is loaded in full into every session.
When invoked 2,679 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.02679 $0.02679
Opus 5 $0.01340 $0.01340
Sonnet 5 $0.00536 $0.00536
Haiku 4.5 $0.00268 $0.00268

Measured 4d ago against content hash 5d5115b7b92b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

project-pulse 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 4d 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 · 139 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Project Overview

Project Pulse is a web application for managing senior design / capstone course projects. Students submit weekly activity reports and peer evaluations; instructors monitor progress via dashboards. It also includes a Requirements Authoring & Management (RAM) module that lets student teams define software requirements before coding — project glossary, vision and scope, use cases, business rules, software requirements specifications, and traceability.

RAM functionality is built spec-first: its requirements live as Markdown under docs/requirements/ and drive implementation through the /design/implement workflow. See Spec-driven development below before adding or changing RAM features.

The overarching development methodology these workflows instantiate — spec-driven and agent-assisted, with a breadth-complete, depth-shallow architecture validated by a thin vertical slice before fanning out per use case — is written up in docs/methodology.md.

Starting the Project

All three services must be running for local development. Run them in this order:

  1. Docker services (MySQL on 3306, Mailpit SMTP on 1025 / web UI on 8025):
    docker-compose up -d
    
  2. Backend (Spring Boot on port 80, dev profile with seed data):
    cd backend
    mvnw.cmd spring-boot:run       # Windows
    ./mvnw spring-boot:run          # macOS/Linux
    
  3. Frontend (Vite dev server on http://localhost:5173):
    cd frontend
    npm install
    npm run dev
    

The app is ready at http://localhost:5173. Mailpit UI is at http://localhost:8025.

Stopping the Project

  1. Backend & Frontend: Kill processes by port to avoid affecting other Java/Node processes:
    # Windows (PowerShell) — backend on port 80, frontend on port 5173
    (Get-NetTCPConnection -LocalPort 80 -ErrorAction SilentlyContinue).OwningProcess | ForEach-Object { Stop-Process -Id $_ -Force }
    (Get-NetTCPConnection -LocalPort 5173 -ErrorAction SilentlyContinue).OwningProcess | ForEach-Object { Stop-Process -Id $_ -Force }
    
    # macOS/Linux
    lsof -ti:80 | xargs kill
    lsof -ti:5173 | xargs kill
    
  2. Docker services:
    docker-compose down
    

Read the full file on GitHub · 139 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. 4d ago First seen · 139 lines · 2,679 tokens per session scan A 5d5115b7b92b

Subscribe to this mod's changes

project-pulse CLAUDE.md is an instructions file published in the GitHub repository Washingtonwei/project-pulse (2 stars, last pushed today), licensed Apache-2.0. It adds 2,679 tokens to every session, about $0.0134 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

bsu-tool CLAUDE.md

Instructions for bsu-tool/bsu-tool, covering claude.md — bsu-tool project context, what this project is, core workflow, language and toolchain and repository structure.

bsu-tool/bsu-tool · 1,461 tokens

flyrank-capstone-social-studio AGENTS.md

AGENTS.md instructions for Sudeozubek/flyrank-capstone-social-studio: Do not rely on Lovable Cloud DB credentials in .env.

Sudeozubek/flyrank-capstone-social-studio · 242 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

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,182 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,345 tokens