From 2056309333a6cdd54e74784772fca3c1ae8c15f0 Mon Sep 17 00:00:00 2001 From: Huang richao Date: Fri, 24 Apr 2026 02:18:35 +0800 Subject: [PATCH] =?UTF-8?q?Add=20agchk=20=E2=80=94=20AI=20agent=20architec?= =?UTF-8?q?ture=20audit=20tool=20to=20Agent=20Skills=20section?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit agchk is a Python CLI and library that audits any AI agent system or LLM-integrated project for 7 categories of architectural failures: hardcoded secrets, tool enforcement gaps, hidden LLM calls, unrestricted code execution, memory growth hazards, output mutation, and missing observability. Co-authored-by: Qwen-Coder --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2c6956f82..c6afb5a7b 100644 --- a/README.md +++ b/README.md @@ -130,6 +130,7 @@ An opinionated list of Python frameworks, libraries, tools, and resources. _Libraries for building AI applications, LLM integrations, and autonomous agents._ - Agent Skills + - [agchk](https://github.com/huangrichao2020/agchk) - Audit the architecture and health of any AI agent system or LLM-integrated project. Scans for hardcoded secrets, tool enforcement gaps, hidden LLM calls, unrestricted code execution, unbounded memory growth, output mutation, and missing observability. - [django-ai-plugins](https://github.com/vintasoftware/django-ai-plugins) - Django backend agent skills for Django, DRF, Celery, and Django-specific code review. - [sentry-skills](https://github.com/getsentry/skills) - Python-focused engineering skills for code review, debugging, and backend workflows. - [trailofbits-skills](https://github.com/trailofbits/skills) - Python-friendly security skills for auditing, testing, and safer backend development. Also [skills-curated](https://github.com/trailofbits/skills-curated).