chore: black format drift + drop "framework" language in docs - #29
Merged
Conversation
Four source files had drifted from the project's Black configuration (line length 100). Running `black src tests` produced these changes mechanically; no logic changed. Reformatted: - src/fips_agents_cli/commands/create.py - src/fips_agents_cli/commands/vendor.py - src/fips_agents_cli/tools/git.py - src/fips_agents_cli/tools/project.py CI's `black --check` step on test.yml will now pass. Assisted-by: Claude Code (Opus 4.7)
Aligns README.md and CLAUDE.md with the toolkit reframe shipped to fips-agents/examples#25 and fips-agents/agent-template#150. fips-agents is a scaffolding toolkit (CLI + composable templates), not a framework — calling it that creates the wrong expectation about runtime model. README changes: - "vendored framework source" → "vendored fipsagents source" - "fipsagents framework source"/"framework code" → "fipsagents source"/"fipsagents code" - "framework version"/"framework source locally" → "fipsagents version"/"fipsagents source locally" CLAUDE.md also fixes two stale `src/base_agent/` references that described a path which never existed in the agent-loop template — the template ships with `src/agent.py` directly, no project-named module wrapper. Both lines also dropped "framework" wording in the same edit. Assisted-by: Claude Code (Opus 4.7)
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
Two unrelated cleanup commits caught by
/session-close:style: Apply black formatting drift fix— four source files had drifted from the project's Black config (line length 100). CI'sblack --checkstep ontest.ymlwas failing onmain. Pure mechanical reformat; no logic changes.src/fips_agents_cli/commands/create.pysrc/fips_agents_cli/commands/vendor.pysrc/fips_agents_cli/tools/git.pysrc/fips_agents_cli/tools/project.pydocs: Drop "framework" language in favor of fipsagents— alignsREADME.mdandCLAUDE.mdwith the toolkit reframe shipped to docs: reframe fips-agents as a toolkit, not a framework examples#25 and chore(makefile): rename update-framework → update-fipsagents agent-template#150. Four lines in README ("vendored framework source", "framework code", "framework version", "framework source locally") rewritten to use "fipsagents" instead. CLAUDE.md additionally fixes two stalesrc/base_agent/references that described a path which never existed in the agent-loop template — the template ships withsrc/agent.pydirectly.Why
fips-agents is a scaffolding toolkit (CLI + composable templates), not a framework. Calling the CLI/ecosystem "the framework" sets the wrong expectation about runtime model. The pieces that are framework-shaped (BaseAgent, FastMCP) are inherited or template-internal — fips-agents-cli itself doesn't impose a runtime.
Test plan
black --check src testspasses (4 files reformatted, 25 unchanged)ruff check src testspassespytestpasses (207 passed, 0 failed)gitleaks detectfinds no secretsREADME.mdorCLAUDE.md(other thanxml-analysis-framework, an external project name, which is not present in this repo's docs)