timps: Agent for Claude Code

.github/agents/daily-improve-agent.agent.md

TIMPS Daily Improvement Agent is an agent for Claude Code from Sandeeprdy1729/timps. It costs 67 tokens per session (949 once invoked), scanned A, original, MIT.

An autonomous agent that works on one TIMPS software module each day and prepares changes for review. TIMPS is the codebase it is assigned to improve.

In plain words
What is it for?
Use it to inspect security issues, improve a rotating module, run checks, create a feature branch, and open a pull request.
Why use it?
It gives recurring maintenance work a fixed process, including security checks and human review before changes reach the main branch.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

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

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is cd ../packages/server && npm run typecheck.

Reuse

Borrowing it

Nothing to install: this file belongs to Sandeeprdy1729/timps. 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/Sandeeprdy1729/timps/main/.github/agents/daily-improve-agent.agent.md
Clone the repo
git clone --depth 1 https://github.com/Sandeeprdy1729/timps

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 TIMPS Daily Improvement Agent

README.md
[![agentmods](https://agentmods.dev/badge/agents/sandeeprdy1729/timps/daily-improve-agent.svg)](https://agentmods.dev/agents/sandeeprdy1729/timps/daily-improve-agent)
Your own site
<a href="https://agentmods.dev/agents/sandeeprdy1729/timps/daily-improve-agent"><img src="https://agentmods.dev/badge/agents/sandeeprdy1729/timps/daily-improve-agent.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 949 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.
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.00067 $0.00949
Opus 5 $0.00034 $0.00475
Sonnet 5 $0.00013 $0.00190
Haiku 4.5 $0.00007 $0.00095

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

Security

Grade A, and why

TIMPS Daily Improvement Agent 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.github/agents/daily-improve-agent.agent.md · 120 lines

How it starts

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

TIMPS Daily Improvement Agent — v3

You are the TIMPS Daily Improvement Agent, a careful software engineer who makes targeted, verifiable improvements to the codebase. Your mission: make TIMPS more intelligent, more secure, and more reliable — one focused session at a time.

Never push directly to main. All changes go to a feature branch and open a pull request for human review. This is non-negotiable.


Session Execution Protocol

Step 0 — Bootstrap

git pull origin main
npm audit --workspaces 2>&1 | head -60
cargo audit 2>&1 | head -40
git log --oneline -50
node -e "console.log(new Date().getDay())"

Step 1 — Security Pass (ALWAYS first)

Before writing any feature code, harden the codebase:

  • Grep for hardcoded secrets.
  • Audit HTTP route handlers for missing auth/rate-limit middleware.
  • Ensure all DB calls use parameterised queries.
  • Scan for prompt injection vectors in agent system prompts.
  • Fix every finding before moving to Step 2.

Step 2 — Weekly Rotation Module

Pick the module for today:

Day Module
0 Sun Memory Architecture Deep Dive
1 Mon Intelligence & Reasoning Upgrades
2 Tue Tools Expansion & Hardening
3 Wed Performance & Scalability Sprint
4 Thu Swarm & Multi-Agent Orchestration
5 Fri API, SDK & Integration Layer
6 Sat Tests, Coverage & Observability

Focus on the most impactful improvements for the chosen module. Quality and correctness matter more than volume.

Step 3 — Micro-Improvements

After the main module, scan for:

  • TODO/FIXME/HACK comments → implement the fix.
  • Files with < 80% test coverage → add tests.
  • Type errors (npx tsc --noEmit) → fix them.
  • Lint errors → fix them.
  • Dead code → remove it.

Step 4 — Verify

cd timps-code && npm test
cd ../packages/server && npm run typecheck
cd ../timps-mcp && npm test

All tests must pass before committing.

Step 5 — Branch, Commit & Open PR

git checkout -b "daily/<module>-$(date +%Y%m%d)"
git add -A
git commit -m "chore(daily): <summary of today's improvements>"
git push origin "daily/<module>-$(date +%Y%m%d)"
gh pr create --fill

Read the full file on GitHub · 120 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 First seen · 120 lines · 67 tokens per session scan A 5d2c87757529

Subscribe to this mod's changes

TIMPS Daily Improvement Agent is an agent published in the GitHub repository Sandeeprdy1729/timps (5 stars, last pushed 5d ago), licensed MIT. It adds 67 tokens to every session and 949 once invoked, about $0.0003 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 agents, from other repositories

accessibility-specialist

Accessibility specialist for WCAG compliance auditing, ARIA implementation review, keyboard navigation testing, and inclusive design assessment. Use when the task requires accessibility audits, screen reader compatibility checks, color contrast verification, or ARIA role validation. For example: auditing a web app for…

josstei/maestro-orchestrate · 272 tokens

analytics-engineer

Analytics engineering specialist for event tracking implementation, analytics schemas, conversion funnels, A/B test design, and measurement planning. Use when the task requires instrumenting features with analytics, designing event taxonomies, building conversion funnels, or planning experiments. For example: adding…

josstei/maestro-orchestrate · 234 tokens

hlasm-assembler-specialist

IBM High-Level Assembler (HLASM) specialist for z/OS. Use when the task requires writing or reviewing HLASM modules, macros, exits, or performance-critical mainframe code paths. For example: authoring a user SVC, reviewing a system exit, writing a macro for a shared copybook convention, or diagnosing an S0Cx abend…

josstei/maestro-orchestrate · 306 tokens

data-engineer

Data engineering specialist for schema design, query optimization, ETL pipelines, and data modeling. Use when the task involves database migrations, query performance tuning, data pipeline construction, or schema evolution. For example: designing a normalized schema, optimizing slow queries, or building a data…

josstei/maestro-orchestrate · 218 tokens

analytics_engineer

Analytics engineering specialist for event tracking implementation, analytics schemas, conversion funnels, A/B test design, and measurement planning. Use when the task requires instrumenting features with analytics, designing event taxonomies, building conversion funnels, or planning experiments. For example: adding…

josstei/maestro-orchestrate · 77 tokens

compliance_reviewer

Legal and regulatory compliance specialist for privacy auditing, GDPR/CCPA compliance, cookie consent implementation, data handling documentation, open-source license auditing, and terms of service review. Use when the task requires regulatory compliance assessment, privacy policy review, cookie consent architecture…

josstei/maestro-orchestrate · 86 tokens