Skip to content

Commit 92fb938

Browse files
committed
feat(AGENTS.md): refine the ai-dev-guide into standard AGENTS.md
1 parent 6564da7 commit 92fb938

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

ai-dev-guide.md renamed to AGENTS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,10 @@ llm_block = self._llm_blocks[identifier] # KeyError naturally thrown
2828
- **Side effects**: Logging, state changes, external calls
2929

3030
**Remember:** Encapsulation should hide complexity, not add complexity.
31+
32+
## Impl with Unit Test and Example
33+
34+
If you are implementing a new feature, please implement the unit test and example.
35+
36+
- For unit test, add in `tests/<module_name>`, and inherit the `unittest.TestCase` class.
37+
- For example, add in `examples/<module_name>`, and just demo the simple usage. (do not add too many use cases in single file)

0 commit comments

Comments
 (0)