empathize-with-others: Instructions file for Claude Code

CLAUDE.md

empathize-with-others CLAUDE.md is an instructions file for Claude Code from ZeroPointSix/empathize-with-others. It costs 1,891 tokens per session, scanned A, original, Apache-2.0.

Project context for Empathy AI, a privacy-focused Android social-communication assistant. It describes the app’s Kotlin, Jetpack Compose, Clean Architecture, and MVVM structure, where MVVM separates screens, state, and application logic.

In plain words
What is it for?
Use it when building, testing, installing, or changing the Android app’s domain logic, data services, Compose screens, ViewModels, or application setup.
Why use it?
It gives coding agents the project’s module boundaries and dependency rules, reducing changes in the wrong layer.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions Claude Code; mentions Codex.

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

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is git worktree add ../feature-branch main.

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/ZeroPointSix/empathize-with-others/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/ZeroPointSix/empathize-with-others

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 empathize-with-others CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/zeropointsix/empathize-with-others/claude-md.svg)](https://agentmods.dev/instructions/zeropointsix/empathize-with-others/claude-md)
Your own site
<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>
Per session 1,891 This file is loaded in full into every session.
When invoked 1,891 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.01891 $0.01891
Opus 5 $0.00945 $0.00945
Sonnet 5 $0.00378 $0.00378
Haiku 4.5 $0.00189 $0.00189

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

Security

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.

CLAUDE.md · 177 lines

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 -> domaindomain严禁依赖 Android SDK。

数据流: UI -> ViewModel -> UseCase -> Repository (Interface) -> Repository (Impl) -> Data Source

关键规则

  1. 状态管理: 使用 StateFlow + data class UiState
  2. 错误处理: 统一使用 Result<T>
  3. 协程: ViewModel 用 viewModelScope,Compose 用 rememberCoroutineScope严禁 GlobalScope
  4. 数据库: Room Schema 变更必须伴随 Migration 脚本 (MIGRATION_x_y) 和测试
    • 迁移测试集中在 app/src/androidTest-disabled
  5. UI 组件: 优先复用 presentation/ui/component/ 下的组件,保持 iOS 风格一致性
  6. 文档语言: 所有文档和回答必须使用中文(代码注释保持英文)
  7. 发布流程: 每次发布必须提供详细 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

Read the full file on GitHub · 177 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. 7d ago First seen · 177 lines · 1,891 tokens per session scan A f4a4fbb4535f

Subscribe to this mod's changes

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.

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

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

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

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