This repo is an entry point. The full source lives at FOX-WSW/AI-WORK.
project-agent-bootstrap is a security-first skill for building, modernizing, or auditing a project-specific intelligent bot with Feishu/Lark and Codex.
It covers the full lifecycle: requirements intake, secure scaffolding, read-only data/code/log tools, topic-level sessions, reliability controls, validation, and deployment preparation.
All source files are in the AI-WORK monorepo:
FOX-WSW/AI-WORK
└── skills/
└── project-agent-bootstrap/
├── SKILL.md # Skill definition and workflow
├── scripts/ # Scaffolder & validator
├── references/ # Architecture, security, intake, acceptance
├── agents/ # Agent config (OpenAI)
└── assets/
└── project-bot-starter/ # Reusable starter template
# Clone the monorepo
git clone https://github.com/FOX-WSW/AI-WORK.git
# Enter the skill directorycd AI-WORK/skills/project-agent-bootstrap
# Scaffold a new project bot
python scripts/scaffold_project_bot.py \
--name "My Project Bot" \
--slug "my-project-bot" \
--output "./output"