feat: Add new agents and skills for Docker, TestLink, and OpenWrt

- Introduced "Docker Build & Test Engineer" agent for building and testing Docker images.
- Added "TestLink Autotest Engineer" agent for generating and verifying autotests from TestLink cases.
- Created "Branch Review Engineer" agent for reviewing branch diffs and proposing improvements.
- Developed "OpenWrt VPN & Network Engineer" agent for designing and implementing OpenWrt networking with VPN.
- Established a structured directory for agents, skills, prompts, instructions, and hooks under `.github/`.
- Implemented detailed skills for branch review processes, including reading code, analyzing improvements, and applying changes.
- Added skills for OpenWrt network discovery, VPN routing, and hardening.
- Created README files for better documentation and navigation of the repository structure.
This commit is contained in:
ВяткинАртём
2026-04-08 09:47:18 +03:00
parent b6eb535e25
commit e5dc08987d
21 changed files with 1261 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
# Instructions
Put shared behavior rules here as `*.instructions.md` files.
## Recommended Patterns
- Global workspace guidance:
- `.github/instructions/workspace.instructions.md`
- File-scoped rules (with `applyTo`):
- `.github/instructions/python.instructions.md`
- `.github/instructions/tests.instructions.md`
## Notes
- Keep instructions concise and specific.
- Use `description` and `applyTo` to avoid loading irrelevant context.
- Do not put multi-step workflows here; use skills for that.
@@ -0,0 +1,19 @@
---
description: "Project-specific coding guidance"
applyTo: "**/*"
---
# Instruction Template
Use this file as a starting point for workspace instructions.
## Keep
- Rules concrete and testable
- Scope narrow with `applyTo` where possible
- Content short to avoid context bloat
## Avoid
- Duplicating skill workflows
- Vague style statements without actionability