droidconKeKotlin AGENTS.md

droidconKeKotlin AGENTS.md is an instructions file for Codex, OpenCode from droidconKE/droidconKeKotlin. It costs 1,957 tokens per session, scanned A, original, Apache-2.0.

Repository instructions for AI coding agents and new contributors working on the droidcon Kenya Android app. They describe its modules, technology choices, conventions, and required commands.

In plain words
What is it for?
Use them to find the module layout, format and analyze code, run Android and unit tests, build the app, and follow the project's Java and Gradle setup.
Why use it?
They reduce the risk of breaking the app by documenting the checks and project rules used before a change is submitted.

Instructions file for CodexOpenCode

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/droidconke/droidconkekotlin/agents-md
Clone the repo
git clone --depth 1 https://github.com/droidconKE/droidconKeKotlin

Made for: Codex, OpenCode.

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 droidconKeKotlin AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/droidconke/droidconkekotlin/agents-md.svg)](https://agentmods.dev/instructions/droidconke/droidconkekotlin/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/droidconke/droidconkekotlin/agents-md"><img src="https://agentmods.dev/badge/instructions/droidconke/droidconkekotlin/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,957 This file is loaded in full into every session.
When invoked 1,957 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.01957 $0.01957
Opus 5 $0.00979 $0.00979
Sonnet 5 $0.00391 $0.00391
Haiku 4.5 $0.00196 $0.00196

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

Security

Grade A, and why

droidconKeKotlin AGENTS.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 5d 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.

AGENTS.md · 183 lines

How it starts

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

AGENTS.md

Working notes for AI agents and new contributors on the droidcon Kenya Android app.

CONTRIBUTING.md covers the human process — issues, forks, PR expectations. This file covers what you need to know to change code here without breaking it.


Commands

Run these before opening a PR. CI runs the same set.

./gradlew spotlessApply ktlintFormat          # format first — the checks below are strict
./gradlew spotlessCheck ktlintCheck detekt    # static analysis
./gradlew lint                                # Android Lint + Slack's Compose rules
./gradlew stabilityCheck                      # Compose recomposition regressions
./gradlew assembleDebug                       # build
./gradlew testDebugUnitTest                   # JVM + Robolectric tests

Instrumentation tests run on Gradle Managed Devices, so no emulator setup is needed:

./gradlew :data:supportedApiLevelsGroupDebugAndroidTest    # api30 + api34

Single test class:

./gradlew :presentation:testDebugUnitTest --tests "*SessionsFilterStateTest*"

No JDK setup needed — gradle/gradle-daemon-jvm.properties pins the daemon to Java 17 and the foojay resolver provisions it.


Module layout

app                  Application, MainActivity host, manifest, DI graph root
presentation         All Compose UI, ViewModels, navigation
chai                 Design system: colours, typography, shared components
domain               Pure Kotlin — models and repository interfaces. No Android dependency.
data                 Repository implementations, sync, mappers
datasource:local     Room database, DAOs, entities
datasource:remote    Ktor client, DTOs, Remote Config
build-logic          Convention plugins

Dependency rule: domain depends on nothing. data depends on domain, never the reverse. presentation does not reach into datasource:local. Keep domain free of Android imports — it is the module that would move first if this ever becomes multiplatform.

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

Subscribe to this mod's changes

droidconKeKotlin AGENTS.md is an instructions file published in the GitHub repository droidconKE/droidconKeKotlin (112 stars, last pushed 2d ago), licensed Apache-2.0. It adds 1,957 tokens to every session, about $0.0098 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