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.
git clone --depth 1 https://github.com/duckduckgo/apple-browsersWrote 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/rules/duckduckgo/apple-browsers/branch-naming-conventions)<a href="https://agentmods.dev/rules/duckduckgo/apple-browsers/branch-naming-conventions"><img src="https://agentmods.dev/badge/rules/duckduckgo/apple-browsers/branch-naming-conventions/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/rules/duckduckgo/apple-browsers/branch-naming-conventions"><img src="https://agentmods.dev/badge/rules/duckduckgo/apple-browsers/branch-naming-conventions.svg" alt="Reviewed on agentmods" width="80" 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.00000 | $0.01906 |
| Opus 5 | $0.00000 | $0.00953 |
| Sonnet 5 | $0.00000 | $0.00381 |
| Haiku 4.5 | $0.00000 | $0.00191 |
Grade A, and why
branch-naming-conventions 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 8d 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 — 315 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Branch Naming Conventions & GitHub Flow
Overview
DuckDuckGo browser development follows GitHub Flow, a streamlined branching strategy that maintains a single main branch with feature branches for development work.
Reference: GitHub Flow Documentation
Core Principles
Main Branch Strategy
- Single source of truth: All development branches from
main - Always deployable:
mainbranch should always be in a deployable state - Merge via PR: All changes merged back through Pull Requests (except releases)
Branch Lifecycle
- Create branch from
main - Develop feature/fix on branch
- Open Pull Request to
main - Code review and testing
- Merge to
main - Delete branch immediately after merge
Branch Naming Conventions
Single Developer Features & Bugfixes
For work by a single developer:
Format: <developer-name>/<feature-or-fix-name>
Examples:
alice/bookmark-syncalice/fix-bookmark-syncbob/credit-card-autofillcharlie/fix-crash-on-startup
Guidelines:
- Use kebab-case (lowercase with hyphens)
- Be descriptive but concise
- Include "fix-" prefix for bugfixes when helpful
Multi-Developer Features
For collaborative features, use a two-stage approach:
1. Base Feature Branch
Format: <feature-name>
Example: autofill
2. Individual Developer Branches
Format: <feature-name>/<developer-name>/<sub-feature-name>
Example: autofill/alice/settings-list-changes
Workflow:
- Create base feature branch from
main - Developers create individual branches from base feature branch
- Individual branches merge into base feature branch
- Base feature branch merges into
main
Release Branches
Release branches follow semantic versioning:
Format: release/<version>
Example: release/0.18.5
Special Notes:
- No developer name prefix
- Use semantic versioning format
- Exception: Release branches merge to
mainvia local merge (not PR) - Delete immediately after merge
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.
- 8d ago First seen · 315 lines · 0 tokens per session scan A debe01e296d9
branch-naming-conventions is a cursor rule published in the GitHub repository duckduckgo/apple-browsers (251 stars, last pushed today), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,906 tokens. 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-09-01.
Other cursor rules, from other repositories
create-ios-release
As an AI assistant helping with iOS app releases, I should guide through the following process for successfully deploying iOS applications to the App Store.
ipa-upload-automation
Universal IPA upload automation (TestFlight + optional App Store submission) for Flutter, React Native, and native Swift/Xcode projects.
ponytail
Ponytail, lazy senior dev mode. Always pick the simplest solution that works.
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
cli-error-handling
CLI command error handling patterns.