refactor: extract studio into its own repository#75
Merged
Conversation
Comprehensive rebrand from genai to agentic:
- Python module: fireflyframework_genai -> fireflyframework_agentic
- PyPI package: fireflyframework-genai -> fireflyframework-agentic
- Class names: FireflyGenAI* -> FireflyAgentic*
(FireflyGenAIConfig, FireflyGenAIError)
- Env var prefix: FIREFLY_GENAI_* -> FIREFLY_AGENTIC_*
- REST factory: create_genai_app() -> create_agentic_app()
- Repo URLs: github.com/.../genai -> .../agentic
- Brand prose: "Firefly GenAI" -> "Firefly Agentic"
Mentions of "GenAI" / "genai-prices" that refer to the category or to the
external genai-prices library (e.g. GenAIPricesCostCalculator) are kept
as-is — they describe the field, not the brand.
Module-level __init__.py re-exports updated. Pre-commit, CI, install
scripts, and docs all use the new names.
Studio (visual IDE, code generation, AI assistant, project runtime, scheduling, tunnel exposure) moves to a dedicated repository: https://github.com/fireflyframework/fireflyframework-agentic-studio Removed from this repo: - src/fireflyframework_agentic/studio/ (entire Python module) - studio-frontend/ (SvelteKit SPA) - studio-desktop/ (Tauri desktop bundle) - scripts/build_studio.py - tests/test_studio/ (~150 test files) - docs/studio.md, studio-agents.md, api-reference.md, scheduling.md, tunnel-exposure.md, input-output-nodes.md, project-api.md, tutorial-bpm-pipeline.md - examples/studio_launch.py - .github/workflows/desktop.yml (Tauri build pipeline) pyproject changes: - Removed [studio] extra (fastapi, uvicorn, strawberry-graphql, apscheduler) - Removed [project.scripts] firefly entry point (lives in studio) - Removed studio from [all] extra CI changes: - Removed frontend-build job - test job no longer needs frontend-build artifact - typecheck and test no longer install --extra studio Build artifacts and Studio-specific patterns also removed from .gitignore.
This file was excluded from the bulk sed because it uses mock_genai fixtures and patches fireflyframework_genai.embeddings.providers.google.genai where 'genai' is the Google generativeai library alias. The exclusion was too coarse — only the lowercase 'genai' identifier (Google's lib) should have been preserved. The package-prefix 'fireflyframework_genai' must still be renamed. Caused CI failure on PR #74: ModuleNotFoundError: No module named 'fireflyframework_genai'
javier-alvarez
previously approved these changes
Apr 28, 2026
The merge-base changed after approval.
javier-alvarez
approved these changes
Apr 28, 2026
miguelgfierro
added a commit
that referenced
this pull request
Apr 28, 2026
The release workflow still tried to build the SvelteKit frontend (studio-frontend/) and run scripts/build_studio.py, both of which were extracted to fireflyframework-agentic-studio in PR #75. Drop the npm/setup-node steps and the build_studio.py call. The release is now a pure Python build: uv build -> gh release create Also change the tag trigger from 'v*' to '[0-9]+.[0-9]+.[0-9]+' so it matches the unprefixed CalVer tags this repo uses (per the rule 'Never prefix git tags with v. Use 1.2.9, not v1.2.9' in CLAUDE.md).
miguelgfierro
added a commit
that referenced
this pull request
Apr 28, 2026
The release workflow tried to build the SvelteKit frontend (studio-frontend/) and run scripts/build_studio.py, both removed by PR #75. setup-node failed at cache-dependency-path: Some specified paths were not resolved, unable to cache dependencies. Drop the npm/setup-node steps and the build_studio.py call. The release is now a pure Python build: uv build -> gh release create Tag trigger 'v*' is unchanged.
ancongui
pushed a commit
that referenced
this pull request
May 31, 2026
refactor: extract studio into its own repository
ancongui
pushed a commit
that referenced
this pull request
May 31, 2026
The release workflow tried to build the SvelteKit frontend (studio-frontend/) and run scripts/build_studio.py, both removed by PR #75. setup-node failed at cache-dependency-path: Some specified paths were not resolved, unable to cache dependencies. Drop the npm/setup-node steps and the build_studio.py call. The release is now a pure Python build: uv build -> gh release create Tag trigger 'v*' is unchanged.
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.
Summary
Studio (visual IDE, project runtime, scheduling, tunnel exposure, code generation, AI assistant) moves out of this repo and into its own:
fireflyframework/fireflyframework-agentic-studio
This PR removes everything Studio-related from `fireflyframework-agentic`. The Studio package (initial import) lands in the new repo separately.
What's removed (305 files, ~60k LOC)
What's preserved
`fireflyframework-agentic` is still a fully usable framework — agents, tools, prompts, reasoning, memory, observability, exposure (REST/queues), pipelines, embeddings, vectorstores. The Studio is now an optional installable layer on top.
Stacked on #74
This branch is built on top of `refactor/rename-to-agentic` (#74). It won't merge cleanly until that PR lands first. Once #74 merges, the diff here will narrow to just the studio extraction.
Migration for downstream consumers
```diff
```
A migration guide will live in the studio repo's README.
Test plan