Borrowing it
Nothing to install: this file belongs to ZeroPointSix/empathize-with-others. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/ZeroPointSix/empathize-with-others/main/CLAUDE.mdgit clone --depth 1 https://github.com/ZeroPointSix/empathize-with-othersWrote 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.
[](https://agentmods.dev/instructions/zeropointsix/empathize-with-others/claude-md)<a href="https://agentmods.dev/instructions/zeropointsix/empathize-with-others/claude-md"><img src="https://agentmods.dev/badge/instructions/zeropointsix/empathize-with-others/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.01891 | $0.01891 |
| Opus 5 | $0.00945 | $0.00945 |
| Sonnet 5 | $0.00378 | $0.00378 |
| Haiku 4.5 | $0.00189 | $0.00189 |
Grade A, and why
empathize-with-others 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 7d 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.
How it starts
The opening of the file, as written. The whole thing — 177 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.
项目概览
共情AI助手 (Empathy AI) - Android 隐私优先智能社交沟通辅助应用
- 架构: Clean Architecture + MVVM + Jetpack Compose
- 语言: Kotlin 2.0.21 (K2 Compiler)
- 版本: v1.14.17 (versionCode: 11417, dev)
- 模块:
:domain|:data|:presentation|:app - 平台: Android (minSdk 24, targetSdk 35)
- 当前分支: main
常用命令
# 构建 (Windows)
gradlew.bat assembleDebug
gradlew.bat assembleRelease
gradlew.bat installDebug
# 测试
gradlew.bat test
gradlew.bat :domain:test
gradlew.bat :data:test
gradlew.bat :presentation:test
gradlew.bat :presentation:testDebugUnitTest --tests "*BUG00058*"
gradlew.bat connectedAndroidTest
# 清理
gradlew.bat clean
架构
:domain/ -> 纯 Kotlin 业务逻辑、UseCase、Repository 接口 (无 Android 依赖)
:data/ -> Room DB、Retrofit、Repository 实现、DI
:presentation/ -> Compose UI、ViewModel、Navigation、Theme (依赖 :domain)
:app/ -> Application 入口、Service、通知、应用级 DI
依赖规则: app -> data/presentation -> domain。domain 层严禁依赖 Android SDK。
数据流: UI -> ViewModel -> UseCase -> Repository (Interface) -> Repository (Impl) -> Data Source
关键规则
- 状态管理: 使用
StateFlow+data class UiState - 错误处理: 统一使用
Result<T> - 协程: ViewModel 用
viewModelScope,Compose 用rememberCoroutineScope,严禁GlobalScope - 数据库: Room Schema 变更必须伴随 Migration 脚本 (
MIGRATION_x_y) 和测试- 迁移测试集中在
app/src/androidTest-disabled
- 迁移测试集中在
- UI 组件: 优先复用
presentation/ui/component/下的组件,保持 iOS 风格一致性 - 文档语言: 所有文档和回答必须使用中文(代码注释保持英文)
- 发布流程: 每次发布必须提供详细 Release 日志(功能/修复/变更/测试),完成
assembleRelease构建并安装启动验证;设备不可用时需先说明并征询用户处理方式
Git 工作流(发布)
发布必须遵循以下流程并记录到版本历史:
- Release 日志:GitHub Release 页面必须包含详细发布介绍(新功能/修复/变更/测试)。如提交前缀未体现新功能,必须手动补齐说明。
- 版本历史同步:
config/version-history.json的 changelog 必须与 Release 说明一致,明确本次新增功能与变更。 - 构建与安装:必须
assembleRelease成功并完成安装启动验证;设备不可用时先说明并征询处理方式。
导航
- 单一 Activity (
MainActivity) + Compose Navigation - 路由定义:
presentation/navigation/NavRoutes.kt - 路由图:
presentation/navigation/NavGraph.kt - 底部 Tab: CONTACT_LIST / AI_ADVISOR / SETTINGS
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.
- 7d ago First seen · 177 lines · 1,891 tokens per session scan A f4a4fbb4535f
empathize-with-others CLAUDE.md is an instructions file published in the GitHub repository ZeroPointSix/empathize-with-others (154 stars, last pushed 7mo ago), licensed Apache-2.0. It adds 1,891 tokens to every session, about $0.0095 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.
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.
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.
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).
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).
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.
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.