chore: remove example/ai-agent-app and root taskiq_poc.py - #150
Merged
Conversation
Drop the unused ai-agent-app example and the root taskiq proof-of-concept script. Neither is referenced by the workspace config, CI workflows, or docs, so no further cleanup is required.
tmgbedu
commented
Jul 9, 2026
tmgbedu
left a comment
Contributor
Author
There was a problem hiding this comment.
✅ Code review verdict: APPROVE (posting as comment — GitHub blocks self-approval on own PR).
Pure-deletion PR (0 additions / 4775 deletions across 27 files). Verified independently:
grep -rn ai-agent-appandgrep -rn taskiq_poc(excluding .git/.claude) → only matches are inside the deleted files themselves; no external references remain.- No
taskiqdependency declared in any pyproject.toml — POC was standalone, removal is clean. - CI (.github/workflows/test.yml) builds
example/config-app,example/database-app, andexample/agents— neverai-agent-app.example/agentsis a separate, still-existing directory and is unaffected. - Workspace glob
members = ["application", "example/*"]needs no edit; the deleted dir simply stops matching. - No framework/core code touched — no correctness, SQL/ORM, NULL-handling, or test surface impacted.
Clean removal. LGTM.
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.
What
Deletes two unused paths cleanly:
example/ai-agent-app/— the entire example directory (27 files)taskiq_poc.py— the repo-root proof-of-concept scriptReferences removed
None needed beyond the files themselves. Confirmed no external references exist:
fastapi_startkit/pyproject.tomluses a glob (members = ["application", "example/*"]), no explicitai-agent-appentry.ai-agent-appwas a standalone project (ownuv.lock) and never appeared infastapi_startkit/uv.lock..github/workflows/test.ymlbuildsconfig-app,database-app, andagents; it never referencedai-agent-app.taskiq_poc.pyhad no importers anywhere.Verification
grep -rn ai-agent-app .(excluding.gitand.claude/worktrees) → 0 matchesgrep -rn taskiq_poc .(same exclusions) → 0 matchesuv sync --group devinfastapi_startkit/→ exit 0, resolves cleanly