Add squad team/member definitions#534
Draft
Edwardvaneechoud wants to merge 5 commits into
Draft
Conversation
Introduce a small, dependency-free "squad" scaffold in each major package as a consistent harness future agents can extend. A squad is a named group of members that a task can be dispatched to; the default member echoes the task so each template is runnable out of the box, with no wiring into existing systems. - flowfile_core: flowfile_core/squad/__init__.py (stdlib-only dataclasses) - flowfile_worker: flowfile_worker/squad.py - flowfile_frame: flowfile_frame/squad.py (kept out of __init__ so it doesn't affect the public-API stubs) - flowfile_frontend: components/common/Squad/Squad.vue + barrel export - flowfile_wasm: components/common/Squad.vue Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016TiM76mRcZBQZh4X4tmY4f
The "squad" is a harness for future agents *developing this repo*, not runtime
code inside the packages. Remove the earlier in-package squad scaffolding and
add a squad of Claude Code subagent definitions instead — one specialist per
major package, each scoped to its dir and grounded in that package's CLAUDE.md
(conventions, test commands, invariants it must not break).
- .claude/agents/{core,worker,frame,frontend,wasm}-engineer.md + README.md
- .gitignore: track /.claude/agents/*.md (the shared squad) while keeping the
rest of /.claude/ (local settings/locks) ignored
- Remove flowfile_{core,worker,frame}/.../squad.py, the Squad.vue components,
and the frontend common barrel export
Definitions only — no runtime code ships into the packages; no effect on the
built application.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016TiM76mRcZBQZh4X4tmY4f
Add five more squad members and a place for Claude to discover the squad: New members (.claude/agents/): - scheduler-engineer, shared-engineer, kernel-engineer — specialists for the remaining packages, grounded in each package's CLAUDE.md and its invariants (core->scheduler-only, import-only-downward, standalone kernel). - docs-writer, release-engineer — cross-cutting roles for the MkDocs site / CLAUDE.md guides and for the Makefile / PyInstaller+Tauri builds / CI workflows / version pins. Entry point: - Root CLAUDE.md now has a "Development Squad" section indexing all ten agents and when to delegate, so the coordinating session discovers them. - .claude/agents/README.md updated with the full roster. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016TiM76mRcZBQZh4X4tmY4f
✅ Deploy Preview for flowfile-wasm ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Squad additions (.claude/agents/): - test-engineer — cross-cutting testing across pytest (all Python packages), Vitest unit, and Playwright E2E, with coverage and the Docker-gated markers. - security-reviewer — auth/secrets/sharing/kernel/connector review that knows the repo's deliberate do-not-"fix" choices (SHA-256 API keys, kernel cloudpickle sandbox). Ensure the squad never ships in a built artifact: - .dockerignore: exclude .claude/ from the Docker build context (the core/worker context is the repo root; no COPY pulls it in today, this guards future ones). - pyproject.toml: add `exclude = [".claude/**"]` as a guard on the PyPI sdist/wheel (packaging is already explicit-include). - Tauri needs no change — it only bundles build/renderer + binaries/ and never references the repo root. Roster updated in root CLAUDE.md and .claude/agents/README.md (now 12 agents), including a note that .claude/ is repo tooling excluded from all bundles. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016TiM76mRcZBQZh4X4tmY4f
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.