File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ # Project Agents.md Guide for OpenAI Codex
2+
3+ This Agents.md file provides comprehensive guidance for OpenAI Codex and other AI agents working with this codebase.
4+
5+ ## Project Structure for OpenAI Codex Navigation
6+
7+ - ` lua/ ` : Lua source files for the plugin
8+ - ` doc/ ` : help documentation
9+ - ` spec/ ` : Busted unit tests
10+ - ` demos/ ` : demonstration scripts
11+
12+ ## Coding Conventions for OpenAI Codex
13+
14+ - Use ** tab-based indentation** .
15+ - Write comments in ** LuaDoc** style with triple dashes (` --- ` ).
16+ - Prefer ** snake_case** for function and variable names.
17+ - Ensure a newline at the end of every file.
18+
19+ ## Testing Requirements for OpenAI Codex
20+
21+ Run the following commands for Lua changes (skip when only docs or comments are modified):
22+
23+ ``` bash
24+ luacheck .
25+ busted
26+ ```
27+
28+ ## Pull Request Guidelines for OpenAI Codex
29+
30+ - Use multi-line Conventional Commits with emoji prefixes for all commits.
31+
32+ ## Programmatic Checks for OpenAI Codex
33+
34+ Before opening a Pull Request, make sure all required tests and linters pass.
35+ =======
136# Contributor Guidelines
237
338## Testing and Linting
You can’t perform that action at this time.
0 commit comments