RuleStack

Configs

Stacks

Compare

Diff

RuleStack

Configs

Stacks

Compare

Diff

Read API

RuleStack

Configs

Stacks

Compare

Diff

Read API

Configs/AGENTS.md/unoplat/unoplat-code-confluence

AGENTS.md

unoplat-code-confluence-ingestion/code-confluence-flow-bridge/AGENTS.md
AGENTS.md

Quality

77/100

Scores the file, not the repository.

Length

2,527 words

24 headings · 1 code blocks

Repository

95

— · pushed 4 days ago

Last changed

2 days ago

First indexed 2 days ago.
unoplat/unoplat-code-confluence/unoplat-code-confluence-ingestion/code-confluence-flow-bridge/AGENTS.mdRawGitHub
1# AGENTS.md - Code Confluence Flow Bridge Agent Guide
2 
3## Engineering Workflow
4 
5- Install: `uv sync` (source: pyproject.toml, confidence: 0.95)
6- Dev: `uv run fastapi dev` (source: pyproject.toml, confidence: 0.85)
7- Test: `uv run --python 3.13 --group test pytest --cov=src/code_confluence_flow_bridge --cov-report=html:coverage_reports tests/ -v` (source: pyproject.toml, confidence: 0.8)
8- Lint: `uv run ruff check src/` (source: ruff.toml, confidence: 0.9)
9- Type check: `uv run --group dev pyrefly check src/` (source: pyproject.toml, confidence: 0.85)
10 
11## Dependency Guide
12 
13- Package manager: `uv`.
14- **packaging**: Reusable core utilities for Python Packaging interoperability specifications, implementing specs with a single correct behavior (e.g., PEP 440 and PEP 425). Provides modules for version handling and specifiers, letting tools parse and evaluate version constraints consistently. Includes support for markers, requirements, tags, metadata, lockfiles, and helper utilities used by Python packaging tooling.
15- **passlib**: Passlib is a password hashing library for Python that provides cross-platform implementations of over 30 password hashing algorithms and a framework for managing existing password hashes. It supports many hashing schemes and lets you verify and update stored hashes in a consistent way across platforms. It is designed for tasks ranging from validating hashes from system sources to providing strong password hashing in multi-user applications.
16- **pydantic-settings**: Provides optional Pydantic features for loading a settings/config class from environment variables or secrets files. It lets you define settings models that inherit from BaseSettings, so missing field values are populated from environment variables while defaults still apply. It supports settings sources like environment variables, secrets files, and related configuration options to manage application configuration cleanly.
17- **sqlalchemy**: SQLAlchemy is the Python SQL toolkit and Object Relational Mapper, a comprehensive set of tools for working with databases and Python. It provides Core and a SQL Expression Language to build composable SQL statements and execute queries and DML against databases. It also includes an ORM built on Core that maps Python objects to database schemas and automates persistence and object-centric querying.
18- **asyncpg**: asyncpg is a database interface library designed specifically for PostgreSQL and Python/asyncio, implementing the PostgreSQL server binary protocol for use with asyncio. It provides an efficient, native PostgreSQL protocol driver for asyncio-based applications and supports Python 3.9+ with PostgreSQL 9.5–18. It includes features such as prepared statements, transactions, cursors, connection pools, and rich type conversion for PostgreSQL data types.
19- **loguru**: Loguru provides a pre-instanced logger to facilitate dealing with logging in Python, available directly via `from loguru import logger`. It offers a single pre-configured logger that you can immediately use to log messages and manage sinks with methods like add(), remove(), and configure(). It supports multiple severity levels and advanced capabilities such as structured logging, contextual data binding, exception handling, and log parsing.
20- **fastapi**: FastAPI is a modern, fast (high‑performance) web framework for building APIs with Python based on standard Python type hints. It builds APIs around standard Python type hints with automatic data validation and schema generation via OpenAPI/JSON Schema, and provides interactive API docs by default. It delivers high performance through its Starlette foundation and supports features like WebSockets, background tasks, and dependency injection for production-ready services.
21- **temporalio**: Temporal Python SDK for building and running workflows and activities on the Temporal platform. It provides client and worker APIs to connect to Temporal, execute workflows, and run activities with data conversion and runtime support. The package includes workflow/activity decorators plus modules for configuration, exceptions, testing, and optional contrib integrations.
22- **tomlkit**: Style-preserving TOML library for Python that is 1.0.0-compliant, with a parser that preserves comments, indentation, whitespace, and element ordering for editable access via an intuitive API. It parses TOML while preserving formatting and exposes the structure so you can edit values, comments, and ordering without losing style. It also provides helpers to create new TOML documents from scratch and work with TOML data programmatically.
23- **sqlmodel**: SQLModel is a library for interacting with SQL databases from Python code using Python objects, designed to be intuitive, easy to use, highly compatible, and robust. It is based on Python type annotations and powered by Pydantic and SQLAlchemy. It provides a unified model layer that works as both SQLAlchemy models and Pydantic models, reducing duplication while retaining full access to both ecosystems’ capabilities. It is designed for strong editor support and compatibility with FastAPI and other applications, with sensible defaults that simplify defining tables and working with sessions and queries.
24- **greenlet**: Greenlet is a library for lightweight concurrent programming, providing greenlets (lightweight coroutines) for in-process sequential concurrency. It provides cooperatively scheduled coroutines that let you explicitly switch execution between greenlets within a single OS thread. Greenlets can be used directly or by higher-level frameworks (e.g., event-loop integrations) to build custom scheduling, advanced control flow, and synchronous-style code over asynchronous tasks.
25- **gitpython**: GitPython is a Python library used to interact with Git repositories at a high level like git-porcelain or a low level like git-plumbing. It provides abstractions of Git objects for easy access to repository data, with options to access repositories via a pure Python implementation or the faster Git command implementation. It offers high- and low-level repository operations by exposing Git objects and repository data through Python abstractions, while supporting both pure Python access and direct invocation of the Git command line for faster operations. Its object database implementation is optimized for large quantities of objects and large datasets through low-level structures and data streaming.
26- **opentelemetry-exporter-otlp**: Convenience package that installs all supported OpenTelemetry Collector OTLP exporters for Python, including gRPC and HTTP/protobuf variants. It bundles the OTLP exporter implementations so you can export traces, metrics, and logs to an OpenTelemetry Collector or other OTLP-compatible endpoints using either gRPC or HTTP/protobuf. It also serves as a meta-package, while recommending that you install the specific protocol package once you choose your preferred transport.
27- **tiktoken**: Fast byte pair encoding (BPE) tokenizer for use with OpenAI’s models, providing model-specific encodings and a simple encode/decode API. Provides built-in encodings such as o200k_base and lets you select the appropriate tokenizer for a specific OpenAI model via encoding_for_model. Includes utilities for encoding/decoding text and an educational submodule to explore BPE behavior and training workflows.
28- **requirements-parser**: Small Python module for parsing Pip requirement files, with the goal of parsing everything in the Pip requirement file format spec. It can parse requirement data from file-like objects or text strings and returns structured requirement entries. It supports common requirement file features such as editables, version control URLs, extras, egg hashes/subdirectories, and direct URLs.
29- **opentelemetry-sdk**: Reference implementation of the OpenTelemetry Python API (the SDK) used by applications to produce telemetry data such as traces, metrics, and logs. Applications depend on opentelemetry-sdk to initialize OpenTelemetry and emit telemetry from their code, while libraries typically depend only on the API. The SDK provides the concrete providers and pipeline pieces (e.g., tracer/meter providers, processors, and exporters) that implement the OpenTelemetry API for Python.
30- **opentelemetry-api**: OpenTelemetry is an observability framework—an API, SDK, and tools designed to help generate and collect application telemetry data such as metrics, logs, and traces for OpenTelemetry Python. Provides the OpenTelemetry API interfaces and context propagation used to instrument Python code for tracing, metrics, and logs. Libraries depend on this API package to define telemetry they emit, which becomes active when an application configures the OpenTelemetry SDK.
31- **typing-extensions**: The typing_extensions module complements the standard-library typing module by providing runtime support for type hints defined in PEP 484 and later PEPs, especially on older Python versions. It backports newer typing features so code can use type system additions to enable early adoption by type checkers and users.
32- **opentelemetry-instrumentation-logging**: OpenTelemetry logging integration that automatically injects tracing context into log statements by registering a custom log record factory with Python’s standard logging module. It injects trace and span context fields (such as trace ID, span ID, service name, and sampling flag) into log records so logs can be correlated with traces. The integration can optionally configure logging with a default format including those fields, and it is enabled by setting the OTEL_PYTHON_LOG_CORRELATION environment variable to true.
33- **gql**: GQL is a GraphQL client for Python that is compatible with GraphQL implementations following the specification and built on GraphQL-core. It provides a top-level package with the gql query parser and a Client entry point to execute GraphQL requests. It supports executing queries, mutations, and subscriptions through sync or async transports, with the Client able to run requests directly or provide sync/async sessions. It can fetch or use schemas for validation and offers multiple transport options (such as HTTP and WebSockets) to communicate with GraphQL backends.
34- **pyyaml**: PyYAML is a YAML parser and emitter for the Python programming language. It provides a complete YAML 1.1 parser with Unicode support and both pure-Python and LibYAML-based parsing/emitting implementations. It offers a low-level event-based API plus a high-level API to serialize and deserialize native Python objects, with extensible type handling.
35- **aiofile**: AIOFile is a Python library that provides real asynchronous file operations with asyncio support. It offers both a high-level async file-like interface via helpers like async_open and a low-level AIOFile class with explicit offset and chunk size control for concurrent I/O. It automatically selects an appropriate backend (Linux libaio when available, threadpool or pure‑Python fallbacks on other platforms) to perform async file operations across systems.
36- **psycopg2-binary**: Pre-compiled binary distribution of Psycopg 2, the PostgreSQL adapter for Python, intended to let users install and use Psycopg without build prerequisites. It provides the same psycopg2 module interface as the source package, including DB-API 2.0 compliance and libpq-backed PostgreSQL connectivity. The binary wheel bundles required client libraries, enabling quick installation and immediate use of connections, cursors, and data type adaptation in Python applications.
37- **tree-sitter-language-pack**: Bundles a comprehensive collection of tree-sitter languages as both source distributions and pre-built wheels for Python. Provides access to 165+ tree-sitter language grammars with prebuilt binaries for easy installation. Exposes helper functions to retrieve language bindings, Language objects, and Parser instances for specific languages.
38- **pydantic**: Pydantic is a data validation library for Python that lets you define how data should be in pure, canonical Python and validate it with Pydantic. It is fast and extensible, providing runtime enforcement of type annotations for Python 3.9+. It validates and parses data using Python type hints, supports standard library types like dataclasses and TypedDict, and allows custom validators and serializers. It can emit JSON Schema and offers strict or lax validation modes to control type coercion behavior.
39- **validate-pyproject**: Validation library and CLI tool for checking pyproject.toml files using JSON Schema, ensuring compliance with packaging standards and PEPs. It validates pyproject.toml content against JSON Schema definitions covering PEP 517, PEP 518, and PEP 621 and can be extended with additional schemas. It offers a command-line interface as well as a Python API centered on a Validator class for programmatic validation.
40- **grpcio**: grpcio is the gRPC runtime package for Python used to build gRPC client and server applications, installable via pip. It lets you define services in Protocol Buffers and uses protoc with the gRPC plugin to generate Python client and server code. It provides a high-performance RPC framework with features such as streaming and pluggable authentication, load balancing, tracing, and health checking for connecting services across environments.
41 
42## Business Logic Domain
43 
44- The domain models describe the Git repository ingestion pipeline, including repositories, codebases, files, imports, structural signatures, and package-manager metadata across languages.
45- Workflow/run tracking models capture orchestration state, ingestion status, and issue/feedback records used for monitoring and follow-up actions.
46- GitHub App onboarding and repository metadata are represented by dedicated integration schemas for manifest/installation flows.
47- Key data structures and schemas (parsing, workflow tracking, GitHub integration) are cataloged in `business_logic_references.md`.
48 
49## App Interfaces
50 
51- **FastAPI HTTP endpoints** live in `src/code_confluence_flow_bridge/main.py`, `src/code_confluence_flow_bridge/github_app/router.py`, and `src/code_confluence_flow_bridge/routers/github_issues/router.py`.
52- Ingestion/admin endpoints cover token management (`/ingest-token`, `/update-token`, `/delete-token`), repository lifecycle (`/start-ingestion`, `/repository-status`, `/repository-data`, `/refresh-repository`, `/delete-repository`), and metadata access (`/codebase-metadata`, `/parent-workflow-jobs`, `/get/ingestedRepositories`).
53- Feature flag and user lookup routes are `/flags`, `/flags/{flag_name}`, and `/user-details`.
54- GitHub App integration exposes `/app-manifest`, `/app-manifest/callback`, and `/webhook`.
55- Issue feedback endpoints live under the GitHub issues router (`/issues`, `/feedback`).
56- Detailed interface inventory with response models is maintained in `app_interfaces.md`.
57 
58## Build/Lint/Test Commands
59 
60```bash
61# Development
62task dev # Start dependencies + run FastAPI
63task sync # Install dependencies with uv
64 
65# Testing
66task test # Run all tests with coverage
67uv run --group test pytest tests/path/to/test_file.py::test_function_name # Single test
68 
69# Code Quality
70task lint # Run ruff linter
71task lint-fix # Auto-fix lint issues
72task typecheck # Run pyrefly type checker
73task format # Format code with ruff
74task code-quality # Run all checks (lint + typecheck + schema validation)
75```
76 
77## Code Style Guidelines
78 
79**Imports**: Absolute imports only (no relative). Use top-level imports. Ruff enforces: I, F401, F403, F405, TID (ban-relative-imports). Order: future, standard-library, third-party, first-party, local-folder.
80 
81**Formatting**: Line length 88. Use `uv run ruff format` - never fix import order manually. Python >=3.13 required.
82 
83**Types**: Always define precise types. No `Any` types. Use pyrefly strict preset. For Pydantic JSON: use `model_dump_json()` not manual serialization.
84 
85**Naming**: Follow Python PEP 8. Use descriptive names. Avoid nested functions (not preferred in this codebase).
86 
87**Error Handling**: Use `@logger.catch` decorator. PostgreSQL sessions: use `session.begin()` but yield `AsyncSession` for automatic transactions.
88 
89**Logging**: Use Loguru's native formatting `logger.info("msg {}", var)` NOT f-strings `logger.info(f"msg {var}")`. For expensive ops: `logger.opt(lazy=True).debug("Result: {}", lambda: expensive_fn())`. Context injection arg `ctx` excluded from docstrings (Google format).
90 
91**Database**: All Postgres operations auto-transactional via `session.begin()`. Use asyncpg for async operations.
92 
93**Testing**: Use `uv run --group test pytest` for tests. Mark integration tests with `@pytest.mark.integration`. Session-scoped fixtures for async.
94 
95**Dependencies**: Use `uv` commands exclusively. Test dependencies in `[dependency-groups]` section. Activate shell: `uv run python`.
96 
97## Implementation Workflow
98 
99**API Verification**: Before implementing framework/library features, verify API methods with official documentation using Context7 tool.
100 
101**Post-Implementation**: ALWAYS run `task typecheck` after implementation. Fix all type errors before considering work complete.
102 
103<!-- UNOPLAT_CODE_CONFLUENCE_CONTEXT:BEGIN -->
104<CRITICAL_INSTRUCTION>
105 
106> Generated from branch `dev` at commit `5ecdba39d57f50c5188a8e32b9dd4f52d01611fe` (2026-07-18). Content may become stale as new commits land.
107 
108</CRITICAL_INSTRUCTION>
109 
110## Engineering Workflow
111### Install
112- `uv sync` (Taskfile.yml, `.`)
113### Build
114- Not detected
115### Dev
116- `DB_HOST=localhost DB_PORT=5432 DB_USER=postgres DB_PASSWORD=postgres DB_NAME=code_confluence NEO4J_HOST=localhost NEO4J_PORT=7687 NEO4J_USERNAME=neo4j NEO4J_PASSWORD=password TEMPORAL_SERVER_ADDRESS=localhost:7233 OTEL_EXPORTER_OTLP_ENDPOINT=localhost:4317 OTEL_EXPORTER_OTLP_PROTOCOL=grpc OTEL_SERVICE_NAME=code-confluence-flow-bridge OTEL_PROPAGATORS='tracecontext,baggage' FRAMEWORK_DEFINITIONS_PATH='../../framework-definitions' TEMPORAL_MAX_CONCURRENT_ACTIVITIES=3 REPOSITORIES_BASE_PATH=/opt/unoplat/repositories TOKEN_ENCRYPTION_KEY='0PiVvlu6HExNWkYjukuG0CAV930B4OsqXNPItAvsxhQ=' GITHUB_APP_OWNER_TYPE=organisation GITHUB_APP_OWNER=unoplat uv run fastapi dev` (Taskfile.yml, `src/code_confluence_flow_bridge`)
117### Test
118- `uv sync --group test && uv run --python 3.13 --group test pytest --cov=src/code_confluence_flow_bridge --cov-report=html:coverage_reports tests/ -v` (Taskfile.yml, `.`)
119### Lint
120- `uv run ruff check src/` (Taskfile.yml, `.`)
121### Type Check
122- `uv run --group dev pyrefly check src/` (Taskfile.yml, `.`)
123 
124## Dependency Guide
125See [`dependencies_overview.md`](./dependencies_overview.md) for the full dependency catalog and usage notes.
126 
127## Business Domain
128### Description
129 
130This service centers on repository ingestion and code intelligence for GitHub projects. It parses Python and TypeScript code, extracts imports and structural signatures, detects package managers and workspace layouts, and packages repository/codebase metadata for downstream processing. It also tracks Temporal workflow state, GitHub App onboarding, and issue/feedback submission around that ingestion pipeline.
131 
132### References
133 
134See [`business_domain_references.md`](./business_domain_references.md) for the supporting source references used to derive this domain summary.
135 
136## App Interfaces
137See [`app_interfaces.md`](./app_interfaces.md) for the canonical interface and endpoint reference.
138 
139## Architecture
140See [`architecture.md`](./architecture.md) for the canonical system architecture diagram.
141 
142<!-- UNOPLAT_CODE_CONFLUENCE_CONTEXT:END -->
143 

Commands it names

  • task dev
  • task sync
  • task test
  • uv run --group test pytest tests/path/to/test_file.py::test_function_name
  • task lint
  • task lint-fix
  • task typecheck
  • task format
  • task code-quality
  • uv sync
  • uv run fastapi dev
  • uv run ruff check src/
  • uv run --group dev pyrefly check src/
  • uv run ruff format
  • uv run --group test pytest

Sections

  • AGENTS.md - Code Confluence Flow Bridge Agent Guide
  • Engineering Workflow
  • Dependency Guide
  • Business Logic Domain
  • App Interfaces
  • Build/Lint/Test Commands
  • Development
  • Testing
  • Code Quality
  • Code Style Guidelines
  • Implementation Workflow
  • Engineering Workflow
  • Install
  • Build
  • Dev
  • Test
  • Lint
  • Type Check
  • Dependency Guide
  • Business Domain
  • Description
  • References
  • App Interfaces
  • Architecture

What it covers

setupbuildtestlint-formatcode-styletypesagent-behaviour

Stack — with the evidence

typescript

(1.00)

python

(1.00)

ruff

(1.00)

pytest

(0.95)

node

(0.70)

react

(0.70)

fastapi

(0.70)

postgres

(0.70)

tailwind

(0.70)

vite

(0.70)

playwright

(0.70)

eslint

(0.70)

docker

(0.60)

github-actions

(0.60)

javascript

(0.50)

Format

AGENTS.md

A plain-markdown README for coding agents, deliberately unopinionated: no frontmatter, no globs, no vendor keys. That minimalism is why it became the one file a dozen different agents will read, and why it carries the least per-file targeting power of any format here.

What the corpus says about it

Repository

Owner
unoplat
Language
—
License
—
Archived
no

All configs in this repo

Also in unoplat/unoplat-code-confluence

Diff this repo’s formats

One repository carrying more than one format is the comparison this product exists for: does anyone actually write different content in each file, or is one a copy of the other?

The other instruction files in this repository
RepositoryFormatStackCoversScoreChanged
unoplat/unoplat-code-confluenceAGENTS.md · 95AGENTS.mdtypescriptpython+12testlint-formatmonorepoagent-behaviour48/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-cli/AGENTS.md · 95AGENTS.mdtypescriptpython+12setupbuildtestlint-format+384/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-commons/.cursor/rules/use-think-tool.mdc · 95Cursor rulestypescriptpython+12no sections30/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-commons/AGENTS.md · 95AGENTS.mdtypescriptpython+12setupbuildtestlint-format+288/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-docs/AGENTS.md · 95AGENTS.mdtypescriptpython+14setupbuildtestlint-format+375/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-docs/CLAUDE.md · 95CLAUDE.mdtypescriptpython+14testgitagent-behaviour43/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-frontend/.cursor/rules/react-vite-tanstack.mdc · 95Cursor rulestypescriptpython+12styleagent-behaviour38/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-frontend/.cursor/rules/shadcn-tanstack-knowledge.mdc · 95Cursor rulestypescriptpython+12teststyleuiperformance48/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-frontend/AGENTS.md · 95AGENTS.mdtypescriptpython+14setupbuildtestlint-format+6100/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-frontend/CLAUDE.md · 95CLAUDE.mdtypescriptpython+14setupstylearchui+162/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-ingestion/code-confluence-flow-bridge/.cursor/rules/code-structure.mdc · 95Cursor rulestypescriptpython+12no sections16/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-ingestion/code-confluence-flow-bridge/.cursor/rules/fastapi-pydantic.mdc · 95Cursor rulestypescriptpython+12styletypes38/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-ingestion/code-confluence-flow-bridge/CLAUDE.md · 95CLAUDE.mdtypescriptpython+13testlint-formatstylearch+696/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-openmetadata/AGENTS.md · 95AGENTS.mdtypescriptpython+12setupbuildtestlint-format+279/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-query-engine/AGENTS.md · 95AGENTS.mdtypescriptpython+13setupbuildtestlint-format+598/1002 days ago
unoplat/unoplat-code-confluenceunoplat-code-confluence-query-engine/CLAUDE.md · 95CLAUDE.mdtypescriptpython+13agent-behaviour25/1002 days ago
Diff against AGENTS.md Diff against unoplat-code-confluence-cli/AGENTS.md Diff against unoplat-code-confluence-commons/.cursor/rules/use-think-tool.mdc Diff against unoplat-code-confluence-commons/AGENTS.md Diff against unoplat-code-confluence-docs/AGENTS.md Diff against unoplat-code-confluence-docs/CLAUDE.md Diff against unoplat-code-confluence-frontend/.cursor/rules/react-vite-tanstack.mdc Diff against unoplat-code-confluence-frontend/.cursor/rules/shadcn-tanstack-knowledge.mdc Diff against unoplat-code-confluence-frontend/AGENTS.md Diff against unoplat-code-confluence-frontend/CLAUDE.md Diff against unoplat-code-confluence-ingestion/code-confluence-flow-bridge/.cursor/rules/code-structure.mdc Diff against unoplat-code-confluence-ingestion/code-confluence-flow-bridge/.cursor/rules/fastapi-pydantic.mdc Diff against unoplat-code-confluence-ingestion/code-confluence-flow-bridge/CLAUDE.md Diff against unoplat-code-confluence-openmetadata/AGENTS.md Diff against unoplat-code-confluence-query-engine/AGENTS.md Diff against unoplat-code-confluence-query-engine/CLAUDE.md

Similar configs

Same format, overlapping stack, ranked by quality.

Same format, overlapping stack, ranked by quality
RepositoryFormatStackCoversScoreChanged
n8n-io/n8npackages/@n8n/agents/AGENTS.md · 199kAGENTS.mdtypescriptlangchain+16buildteststylearch+3100/1003 days ago
aaif-goose/gooseAGENTS.md · 52kAGENTS.mdrusttypescript+2setupbuildtestlint-format+6100/1003 days ago
duckduckgo/content-scope-scriptsspecial-pages/AGENTS.md · 70AGENTS.mdtypescriptjavascript+5buildteststylearch+3100/1003 days ago
SkeneTechnologies/skene-cookbookAGENTS.md · 51AGENTS.mdpythoneslint+4setupbuildtestlint-format+7100/1002 days ago
mui/material-uiAGENTS.md · 99kAGENTS.mdtypescriptjavascript+13setupbuildtestlint-format+9100/1003 days ago
OnlyTerp/prompt-cache-skillsAGENTS.md · 112AGENTS.mdpythongithub-actionssetupbuildtestlint-format+5100/1003 days ago
trick77/agents-md-syncAGENTS.md · 2AGENTS.mdtypescriptnode+4setupbuildteststyle+5100/1003 days ago
vllm-project/vllmAGENTS.md · 88kAGENTS.mdpythonpytorch+3setuptestlint-formatstyle+5100/1003 days ago
RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack

RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack

RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack