Fleur AGENTS.md

Project guidance for WackyGem/Fleur, a multi-part software project with Python data tools, Rust engines, a frontend, deployment files, and documentation. It describes the project layout and where key technical information is kept.

In plain words
What is it for?
Orienting work in the Fleur codebase, locating architecture and deployment documents, understanding the Python, Rust, and frontend areas, and following the project's documentation and workspace structure.
Why use it?
It gives coding agents a shared map of the repository so they can find the right component and follow its boundaries. It reduces confusion in a project made of several languages and subprojects.

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/wackygem/fleur/agents-md
Clone the repo
git clone --depth 1 https://github.com/WackyGem/Fleur

Made for: Codex, OpenCode.

Per session 3,914 This file is loaded in full into every session.
When invoked 3,914 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.03914 $0.03914
Opus 5 $0.01957 $0.01957
Sonnet 5 $0.00783 $0.00783
Haiku 4.5 $0.00391 $0.00391

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

Security

Grade A, and why

Fleur 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 2d 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 · 264 lines

How it starts

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

AGENTS.md — fleur 项目指南

项目结构

fleur/
├── pipeline/           # Python 数据工作区,由 uv 管理
│   ├── scheduler/      # Dagster 调度项目(scheduler)
│   ├── elt/            # dbt 转换项目(elt)
│   ├── contract_tools/ # 数据契约校验与生成工具
│   ├── contracts/      # 数据契约注册表(字段事实源)
│   └── migrate/        # Alembic 数据库迁移
├── engines/            # Rust 后端和计算引擎工作区,由 Cargo 管理
├── deploy/             # 部署配置
│   ├── docker-compose.yml
│   ├── postgres/       # PostgreSQL 配置
│   └── release-manifest.yml
├── app/                # 前端应用工作区(racingline)
├── docs/               # 项目文档与计划
├── .env                # 环境变量(不提交)
└── .env.example        # 环境变量模板

文档入口

  • 文档总入口:docs/README.md
  • 多工程项目状态:docs/architecture/project-status.md
  • 数据平台地图:docs/architecture/data-platform.md
  • 数据治理地图:docs/architecture/data-governance.md
  • Furnace 计算引擎地图:docs/architecture/furnace.md
  • Rearview 后端服务地图:docs/architecture/rearview.md
  • Racingline 前端工作台地图:docs/architecture/racingline.md
  • 部署与运行地图:docs/architecture/deploy-ops.md
  • 架构边界:docs/architecture/
  • 模块边界:docs/architecture/scheduler-module-boundaries.md
  • 长期决策:docs/ADR/
  • 方案与历史设计:docs/RFC/
  • 执行计划:docs/plans/README.md
  • 技术债与质量优化:docs/issues/
  • 运行报告:docs/jobs/reports/
  • dbt 模型设计:docs/architecture/dbt_layer/
  • 接口、数据字典和样例:docs/references/
  • 项目 skills:docs/skills/
  • Rust engines 文档地图:engines/README.md

Python 与工作区

  • 使用 uv 管理 Python 依赖和虚拟环境。
  • Python 版本固定在 3.12.13,配置于 pipeline/.python-version
  • 所有 Python、dbt、Dagster 和 dg 命令必须在 pipeline/ 目录下通过 uv run 执行。
  • 同步完整工作区:
cd pipeline
uv sync --all-packages --all-groups

子项目

子项目 路径 包管理器 说明
scheduler pipeline/scheduler/ uv (pyproject.toml) Dagster 调度与资产定义
elt pipeline/elt/ uv (pyproject.toml) dbt 数据转换
contract_tools pipeline/contract_tools/ uv (pyproject.toml) contract registry 校验与生成
migrate pipeline/migrate/ uv (pyproject.toml) Alembic 数据库迁移

Rust 与 engines 工作区

Read the full file on GitHub · 264 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. 2d ago First seen · 264 lines · 3,914 tokens per session scan A 1ff6771fcff0

Subscribe to this mod's changes

Fleur AGENTS.md is an instructions file published in the GitHub repository WackyGem/Fleur (110 stars, last pushed 1mo ago), licensed MIT. It adds 3,914 tokens to every session, about $0.0196 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

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

next.js 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

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

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

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,345 tokens