flowjet-agent 1.0.19__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- flowjet_agent-1.0.19/.gitignore +471 -0
- flowjet_agent-1.0.19/LICENSE +21 -0
- flowjet_agent-1.0.19/PKG-INFO +197 -0
- flowjet_agent-1.0.19/README.md +164 -0
- flowjet_agent-1.0.19/docs/completion-design.md +1065 -0
- flowjet_agent-1.0.19/docs/naming.md +36 -0
- flowjet_agent-1.0.19/nano.yml +25 -0
- flowjet_agent-1.0.19/pyproject.toml +108 -0
- flowjet_agent-1.0.19/src/fj_ai/__init__.py +12 -0
- flowjet_agent-1.0.19/src/fj_ai/__main__.py +7 -0
- flowjet_agent-1.0.19/src/fj_ai/agent.py +260 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/README.md +10 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/brainstorming/SKILL.md +159 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/brainstorming/scripts/frame-template.html +213 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/brainstorming/scripts/helper.js +167 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/brainstorming/scripts/server.cjs +723 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/brainstorming/scripts/start-server.sh +209 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/brainstorming/scripts/stop-server.sh +120 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/brainstorming/visual-companion.md +291 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/dispatching-parallel-agents/SKILL.md +185 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/LICENSE.txt +30 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/SKILL.md +91 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/__init__.py +1 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/accept_changes.py +131 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/comment.py +410 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/merge_runs.py +304 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/helpers/__init__.py +109 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/helpers/pptx_chart.py +189 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/helpers/pptx_slide.py +59 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/helpers/pptx_theme.py +110 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/mce/mc.xsd +75 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/soffice.py +190 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/validate.py +173 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/validators/__init__.py +15 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/validators/base.py +826 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/validators/docx.py +445 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/validators/pptx.py +428 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/office/validators/redlining.py +288 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/templates/comments.xml +3 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/templates/commentsExtended.xml +3 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/templates/commentsIds.xml +3 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/docx/scripts/templates/people.xml +3 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/SKILL.md +353 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/data/SHAPE-INDEX-NOTICE.md +17 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/data/lobe-icons.json +878 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/data/shape-index.json.gz +0 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/autolayout.md +173 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/derasterize.md +54 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/diagram-types.md +205 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/live-infra.md +71 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/mermaid-authoring.md +56 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/pr-bot.md +73 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/shapes.md +151 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/style-extraction.md +255 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/style-presets.md +115 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/toolbox.md +107 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/troubleshooting.md +63 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/tubemap.md +67 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/references/xml-authoring.md +205 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/aiicons.py +204 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/autolayout.py +410 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/buildup.py +331 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/c4.py +163 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/ciimports.py +182 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/composeimports.py +118 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/compress.py +257 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/dockerimports.py +144 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/drawio2mermaid.py +153 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/drawio2pptx.py +112 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/drawiodiff.py +164 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/drawiohtml.py +229 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/encode_drawio_url.py +58 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/explain.py +156 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/goimports.py +141 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/heatmap.py +226 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/jsimports.py +162 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/k8simports.py +242 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/openapiimports.py +165 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/prdiff.py +191 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/pyclasses.py +156 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/pyimports.py +153 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/raster2drawio.py +196 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/relabel.py +102 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/repair_png.py +37 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/restyle.py +161 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/runbook.py +241 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/rustimports.py +203 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/seqlayout.py +222 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/shapesearch.py +162 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/sqlerd.py +167 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/svgflow.py +85 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/tfimports.py +262 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/tfstate.py +128 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/timelapse.py +251 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/tubemap.py +177 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/scripts/validate.py +340 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/styles/built-in/colorblind-safe.json +49 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/styles/built-in/corporate.json +49 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/styles/built-in/dark.json +52 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/styles/built-in/default.json +49 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/styles/built-in/handdrawn.json +49 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/drawio-skill/styles/schema.json +264 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/executing-plans/SKILL.md +70 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/finishing-a-development-branch/SKILL.md +241 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/mcp-builder/LICENSE.txt +202 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/mcp-builder/SKILL.md +236 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/mcp-builder/reference/evaluation.md +602 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/mcp-builder/reference/mcp_best_practices.md +249 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/mcp-builder/reference/node_mcp_server.md +970 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/mcp-builder/reference/python_mcp_server.md +719 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/mcp-builder/scripts/connections.py +151 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/mcp-builder/scripts/evaluation.py +408 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/mcp-builder/scripts/requirements.txt +2 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pdf/LICENSE.txt +30 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pdf/SKILL.md +314 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pdf/forms.md +294 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pdf/reference.md +612 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pdf/scripts/check_bounding_boxes.py +72 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pdf/scripts/check_fillable_fields.py +11 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pdf/scripts/convert_pdf_to_images.py +31 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pdf/scripts/create_validation_image.py +37 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pdf/scripts/extract_form_field_info.py +128 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pdf/scripts/extract_form_structure.py +115 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pdf/scripts/fill_fillable_fields.py +102 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pdf/scripts/fill_pdf_form_with_annotations.py +106 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/LICENSE.txt +30 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/SKILL.md +238 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/__init__.py +0 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/add_slide.py +377 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/clean.py +303 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/helpers/__init__.py +109 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/helpers/pptx_chart.py +189 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/helpers/pptx_slide.py +59 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/helpers/pptx_theme.py +110 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/mce/mc.xsd +75 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/soffice.py +190 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/validate.py +173 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/validators/__init__.py +15 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/validators/base.py +826 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/validators/docx.py +445 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/validators/pptx.py +428 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/office/validators/redlining.py +288 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/pptx/scripts/thumbnail.py +307 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/receiving-code-review/SKILL.md +213 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/requesting-code-review/SKILL.md +103 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/requesting-code-review/code-reviewer.md +172 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/subagent-driven-development/SKILL.md +418 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/subagent-driven-development/implementer-prompt.md +139 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/subagent-driven-development/scripts/review-package +44 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/subagent-driven-development/scripts/sdd-workspace +22 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/subagent-driven-development/scripts/task-brief +40 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/subagent-driven-development/task-reviewer-prompt.md +188 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/systematic-debugging/CREATION-LOG.md +119 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/systematic-debugging/SKILL.md +296 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/systematic-debugging/condition-based-waiting.md +115 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/systematic-debugging/defense-in-depth.md +122 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/systematic-debugging/find-polluter.sh +63 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/systematic-debugging/root-cause-tracing.md +169 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/systematic-debugging/test-academic.md +14 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/systematic-debugging/test-pressure-1.md +58 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/systematic-debugging/test-pressure-2.md +68 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/systematic-debugging/test-pressure-3.md +69 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/test-driven-development/SKILL.md +371 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/test-driven-development/testing-anti-patterns.md +299 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/using-git-worktrees/SKILL.md +202 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/using-superpowers/SKILL.md +62 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/using-superpowers/references/antigravity-tools.md +23 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/using-superpowers/references/codex-tools.md +39 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/using-superpowers/references/pi-tools.md +16 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/verification-before-completion/SKILL.md +139 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/writing-plans/SKILL.md +174 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/writing-plans/plan-document-reviewer-prompt.md +49 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/writing-skills/SKILL.md +689 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/writing-skills/anthropic-best-practices.md +1150 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/writing-skills/examples/CLAUDE_MD_TESTING.md +189 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/writing-skills/graphviz-conventions.dot +172 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/writing-skills/persuasion-principles.md +187 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/writing-skills/render-graphs.js +168 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/writing-skills/testing-skills-with-subagents.md +384 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/LICENSE.txt +30 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/SKILL.md +99 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/helpers/__init__.py +109 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/helpers/pptx_chart.py +189 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/helpers/pptx_slide.py +59 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/helpers/pptx_theme.py +110 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/mce/mc.xsd +75 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/soffice.py +190 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/validate.py +173 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/validators/__init__.py +15 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/validators/base.py +826 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/validators/docx.py +445 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/validators/pptx.py +428 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/office/validators/redlining.py +288 -0
- flowjet_agent-1.0.19/src/fj_ai/builtin_skills/xlsx/scripts/recalc.py +302 -0
- flowjet_agent-1.0.19/src/fj_ai/cli.py +513 -0
- flowjet_agent-1.0.19/src/fj_ai/completion/__init__.py +7 -0
- flowjet_agent-1.0.19/src/fj_ai/completion/context.py +250 -0
- flowjet_agent-1.0.19/src/fj_ai/completion/engine.py +471 -0
- flowjet_agent-1.0.19/src/fj_ai/doctor_cmd.py +198 -0
- flowjet_agent-1.0.19/src/fj_ai/progress.py +805 -0
- flowjet_agent-1.0.19/src/fj_ai/setup_cmd.py +531 -0
- flowjet_agent-1.0.19/src/fj_ai/shell/__init__.py +0 -0
- flowjet_agent-1.0.19/src/fj_ai/shell/_fj.zsh +74 -0
- flowjet_agent-1.0.19/src/fj_ai/shell/fj.bash +68 -0
- flowjet_agent-1.0.19/src/fj_ai/stream.py +453 -0
- flowjet_agent-1.0.19/src/fj_ai/threads.py +360 -0
- flowjet_agent-1.0.19/src/fj_ai/tool_stream.py +246 -0
|
@@ -0,0 +1,471 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
# Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# flowjet-agent commits uv.lock for reproducible CLI installs.
|
|
99
|
+
|
|
100
|
+
# poetry
|
|
101
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
102
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
103
|
+
# commonly ignored for libraries.
|
|
104
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
105
|
+
# poetry.lock
|
|
106
|
+
# poetry.toml
|
|
107
|
+
|
|
108
|
+
# pdm
|
|
109
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
110
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
111
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
112
|
+
# pdm.lock
|
|
113
|
+
# pdm.toml
|
|
114
|
+
.pdm-python
|
|
115
|
+
.pdm-build/
|
|
116
|
+
|
|
117
|
+
# pixi
|
|
118
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
119
|
+
# pixi.lock
|
|
120
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
121
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
122
|
+
.pixi
|
|
123
|
+
|
|
124
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
125
|
+
__pypackages__/
|
|
126
|
+
|
|
127
|
+
# Celery stuff
|
|
128
|
+
celerybeat-schedule
|
|
129
|
+
celerybeat.pid
|
|
130
|
+
|
|
131
|
+
# Redis
|
|
132
|
+
*.rdb
|
|
133
|
+
*.aof
|
|
134
|
+
*.pid
|
|
135
|
+
|
|
136
|
+
# RabbitMQ
|
|
137
|
+
mnesia/
|
|
138
|
+
rabbitmq/
|
|
139
|
+
rabbitmq-data/
|
|
140
|
+
|
|
141
|
+
# ActiveMQ
|
|
142
|
+
activemq-data/
|
|
143
|
+
|
|
144
|
+
# SageMath parsed files
|
|
145
|
+
*.sage.py
|
|
146
|
+
|
|
147
|
+
# Environments
|
|
148
|
+
.env
|
|
149
|
+
.envrc
|
|
150
|
+
.venv
|
|
151
|
+
env/
|
|
152
|
+
venv/
|
|
153
|
+
ENV/
|
|
154
|
+
env.bak/
|
|
155
|
+
venv.bak/
|
|
156
|
+
|
|
157
|
+
# Local editor / tool backups
|
|
158
|
+
.backups/
|
|
159
|
+
|
|
160
|
+
# Spyder project settings
|
|
161
|
+
.spyderproject
|
|
162
|
+
.spyproject
|
|
163
|
+
|
|
164
|
+
# Rope project settings
|
|
165
|
+
.ropeproject
|
|
166
|
+
|
|
167
|
+
# mkdocs documentation
|
|
168
|
+
/site
|
|
169
|
+
|
|
170
|
+
# mypy
|
|
171
|
+
.mypy_cache/
|
|
172
|
+
.dmypy.json
|
|
173
|
+
dmypy.json
|
|
174
|
+
|
|
175
|
+
# Pyre type checker
|
|
176
|
+
.pyre/
|
|
177
|
+
|
|
178
|
+
# pytype static type analyzer
|
|
179
|
+
.pytype/
|
|
180
|
+
|
|
181
|
+
# Cython debug symbols
|
|
182
|
+
cython_debug/
|
|
183
|
+
|
|
184
|
+
# PyCharm
|
|
185
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
186
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
188
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
189
|
+
# .idea/
|
|
190
|
+
|
|
191
|
+
# Abstra
|
|
192
|
+
# Abstra is an AI-powered process automation framework.
|
|
193
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
194
|
+
# Learn more at https://abstra.io/docs
|
|
195
|
+
.abstra/
|
|
196
|
+
|
|
197
|
+
# Visual Studio Code
|
|
198
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
199
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
200
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
201
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
202
|
+
# .vscode/
|
|
203
|
+
# Temporary file for partial code execution
|
|
204
|
+
tempCodeRunnerFile.py
|
|
205
|
+
|
|
206
|
+
# Ruff stuff:
|
|
207
|
+
.ruff_cache/
|
|
208
|
+
|
|
209
|
+
# PyPI configuration file
|
|
210
|
+
.pypirc
|
|
211
|
+
|
|
212
|
+
# Marimo
|
|
213
|
+
marimo/_static/
|
|
214
|
+
marimo/_lsp/
|
|
215
|
+
__marimo__/
|
|
216
|
+
|
|
217
|
+
# Streamlit
|
|
218
|
+
.streamlit/secrets.toml
|
|
219
|
+
|
|
220
|
+
# Byte-compiled / optimized / DLL files
|
|
221
|
+
__pycache__/
|
|
222
|
+
*.py[codz]
|
|
223
|
+
*$py.class
|
|
224
|
+
|
|
225
|
+
# C extensions
|
|
226
|
+
*.so
|
|
227
|
+
|
|
228
|
+
# Distribution / packaging
|
|
229
|
+
.Python
|
|
230
|
+
build/
|
|
231
|
+
develop-eggs/
|
|
232
|
+
dist/
|
|
233
|
+
downloads/
|
|
234
|
+
eggs/
|
|
235
|
+
.eggs/
|
|
236
|
+
lib/
|
|
237
|
+
lib64/
|
|
238
|
+
parts/
|
|
239
|
+
sdist/
|
|
240
|
+
var/
|
|
241
|
+
wheels/
|
|
242
|
+
share/python-wheels/
|
|
243
|
+
*.egg-info/
|
|
244
|
+
.installed.cfg
|
|
245
|
+
*.egg
|
|
246
|
+
MANIFEST
|
|
247
|
+
|
|
248
|
+
# PyInstaller
|
|
249
|
+
# Usually these files are written by a python script from a template
|
|
250
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
251
|
+
*.manifest
|
|
252
|
+
*.spec
|
|
253
|
+
|
|
254
|
+
# Installer logs
|
|
255
|
+
pip-log.txt
|
|
256
|
+
pip-delete-this-directory.txt
|
|
257
|
+
|
|
258
|
+
# Unit test / coverage reports
|
|
259
|
+
htmlcov/
|
|
260
|
+
.tox/
|
|
261
|
+
.nox/
|
|
262
|
+
.coverage
|
|
263
|
+
.coverage.*
|
|
264
|
+
.cache
|
|
265
|
+
nosetests.xml
|
|
266
|
+
coverage.xml
|
|
267
|
+
*.cover
|
|
268
|
+
*.py.cover
|
|
269
|
+
.hypothesis/
|
|
270
|
+
.pytest_cache/
|
|
271
|
+
cover/
|
|
272
|
+
|
|
273
|
+
# Translations
|
|
274
|
+
*.mo
|
|
275
|
+
*.pot
|
|
276
|
+
|
|
277
|
+
# Django stuff:
|
|
278
|
+
*.log
|
|
279
|
+
local_settings.py
|
|
280
|
+
db.sqlite3
|
|
281
|
+
db.sqlite3-journal
|
|
282
|
+
|
|
283
|
+
# Flask stuff:
|
|
284
|
+
instance/
|
|
285
|
+
.webassets-cache
|
|
286
|
+
|
|
287
|
+
# Scrapy stuff:
|
|
288
|
+
.scrapy
|
|
289
|
+
|
|
290
|
+
# Sphinx documentation
|
|
291
|
+
docs/_build/
|
|
292
|
+
|
|
293
|
+
# PyBuilder
|
|
294
|
+
.pybuilder/
|
|
295
|
+
target/
|
|
296
|
+
|
|
297
|
+
# Jupyter Notebook
|
|
298
|
+
.ipynb_checkpoints
|
|
299
|
+
|
|
300
|
+
# IPython
|
|
301
|
+
profile_default/
|
|
302
|
+
ipython_config.py
|
|
303
|
+
|
|
304
|
+
# pyenv
|
|
305
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
306
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
307
|
+
# .python-version
|
|
308
|
+
|
|
309
|
+
# pipenv
|
|
310
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
311
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
312
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
313
|
+
# install all needed dependencies.
|
|
314
|
+
# Pipfile.lock
|
|
315
|
+
|
|
316
|
+
# UV
|
|
317
|
+
# flowjet-agent commits uv.lock for reproducible CLI installs.
|
|
318
|
+
|
|
319
|
+
# poetry
|
|
320
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
321
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
322
|
+
# commonly ignored for libraries.
|
|
323
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
324
|
+
# poetry.lock
|
|
325
|
+
# poetry.toml
|
|
326
|
+
|
|
327
|
+
# pdm
|
|
328
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
329
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
330
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
331
|
+
# pdm.lock
|
|
332
|
+
# pdm.toml
|
|
333
|
+
.pdm-python
|
|
334
|
+
.pdm-build/
|
|
335
|
+
|
|
336
|
+
# pixi
|
|
337
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
338
|
+
# pixi.lock
|
|
339
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
340
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
341
|
+
.pixi
|
|
342
|
+
|
|
343
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
344
|
+
__pypackages__/
|
|
345
|
+
|
|
346
|
+
# Celery stuff
|
|
347
|
+
celerybeat-schedule
|
|
348
|
+
celerybeat.pid
|
|
349
|
+
|
|
350
|
+
# Redis
|
|
351
|
+
*.rdb
|
|
352
|
+
*.aof
|
|
353
|
+
*.pid
|
|
354
|
+
|
|
355
|
+
# RabbitMQ
|
|
356
|
+
mnesia/
|
|
357
|
+
rabbitmq/
|
|
358
|
+
rabbitmq-data/
|
|
359
|
+
|
|
360
|
+
# ActiveMQ
|
|
361
|
+
activemq-data/
|
|
362
|
+
|
|
363
|
+
# SageMath parsed files
|
|
364
|
+
*.sage.py
|
|
365
|
+
|
|
366
|
+
# Environments
|
|
367
|
+
.env
|
|
368
|
+
.envrc
|
|
369
|
+
.venv
|
|
370
|
+
env/
|
|
371
|
+
venv/
|
|
372
|
+
ENV/
|
|
373
|
+
env.bak/
|
|
374
|
+
venv.bak/
|
|
375
|
+
|
|
376
|
+
# Local editor / tool backups
|
|
377
|
+
.backups/
|
|
378
|
+
|
|
379
|
+
# Spyder project settings
|
|
380
|
+
.spyderproject
|
|
381
|
+
.spyproject
|
|
382
|
+
|
|
383
|
+
# Rope project settings
|
|
384
|
+
.ropeproject
|
|
385
|
+
|
|
386
|
+
# mkdocs documentation
|
|
387
|
+
/site
|
|
388
|
+
|
|
389
|
+
# mypy
|
|
390
|
+
.mypy_cache/
|
|
391
|
+
.dmypy.json
|
|
392
|
+
dmypy.json
|
|
393
|
+
|
|
394
|
+
# Pyre type checker
|
|
395
|
+
.pyre/
|
|
396
|
+
|
|
397
|
+
# pytype static type analyzer
|
|
398
|
+
.pytype/
|
|
399
|
+
|
|
400
|
+
# Cython debug symbols
|
|
401
|
+
cython_debug/
|
|
402
|
+
|
|
403
|
+
# PyCharm
|
|
404
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
405
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
406
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
407
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
408
|
+
# .idea/
|
|
409
|
+
|
|
410
|
+
# Abstra
|
|
411
|
+
# Abstra is an AI-powered process automation framework.
|
|
412
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
413
|
+
# Learn more at https://abstra.io/docs
|
|
414
|
+
.abstra/
|
|
415
|
+
|
|
416
|
+
# Visual Studio Code
|
|
417
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
418
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
419
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
420
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
421
|
+
# .vscode/
|
|
422
|
+
# Temporary file for partial code execution
|
|
423
|
+
tempCodeRunnerFile.py
|
|
424
|
+
|
|
425
|
+
# Ruff stuff:
|
|
426
|
+
.ruff_cache/
|
|
427
|
+
|
|
428
|
+
# PyPI configuration file
|
|
429
|
+
.pypirc
|
|
430
|
+
|
|
431
|
+
# Marimo
|
|
432
|
+
marimo/_static/
|
|
433
|
+
marimo/_lsp/
|
|
434
|
+
__marimo__/
|
|
435
|
+
|
|
436
|
+
# Streamlit
|
|
437
|
+
.streamlit/secrets.toml
|
|
438
|
+
#--------------------------------------------------#
|
|
439
|
+
# The following was generated with gitignore.nvim: #
|
|
440
|
+
#--------------------------------------------------#
|
|
441
|
+
# Gitignore for the following technologies: macOS
|
|
442
|
+
|
|
443
|
+
# General
|
|
444
|
+
.DS_Store
|
|
445
|
+
.AppleDouble
|
|
446
|
+
.LSOverride
|
|
447
|
+
|
|
448
|
+
# Icon must end with two
|
|
449
|
+
Icon
|
|
450
|
+
|
|
451
|
+
# Thumbnails
|
|
452
|
+
._*
|
|
453
|
+
|
|
454
|
+
# Files that might appear in the root of a volume
|
|
455
|
+
.DocumentRevisions-V100
|
|
456
|
+
.fseventsd
|
|
457
|
+
.Spotlight-V100
|
|
458
|
+
.TemporaryItems
|
|
459
|
+
.Trashes
|
|
460
|
+
.VolumeIcon.icns
|
|
461
|
+
.com.apple.timemachine.donotpresent
|
|
462
|
+
|
|
463
|
+
# Directories potentially created on remote AFP share
|
|
464
|
+
.AppleDB
|
|
465
|
+
.AppleDesktop
|
|
466
|
+
Network Trash Folder
|
|
467
|
+
Temporary Items
|
|
468
|
+
.apdisk
|
|
469
|
+
|
|
470
|
+
# iCloud generated files
|
|
471
|
+
*.icloud
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Xiaming Chen
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flowjet-agent
|
|
3
|
+
Version: 1.0.19
|
|
4
|
+
Summary: FlowJet (fj) — one-shot CLI coding agent powered by soothe-nano
|
|
5
|
+
Project-URL: Homepage, https://github.com/caesar0301/flowjet-agent
|
|
6
|
+
Project-URL: Repository, https://github.com/caesar0301/flowjet-agent
|
|
7
|
+
Project-URL: Issues, https://github.com/caesar0301/flowjet-agent/issues
|
|
8
|
+
Author: Xiaming Chen
|
|
9
|
+
License: MIT
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: agent,ai,cli,coding-agent,fj,flowjet,flowjet-agent,nano,soothe
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Environment :: Console
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
21
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
23
|
+
Requires-Python: <3.15,>=3.11
|
|
24
|
+
Requires-Dist: soothe-nano<1.1.0,>=1.0.8
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Requires-Dist: mypy>=1.0.0; extra == 'dev'
|
|
27
|
+
Requires-Dist: pytest-asyncio>=1.3.0; extra == 'dev'
|
|
28
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
|
29
|
+
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
|
30
|
+
Requires-Dist: ruff>=0.12.0; extra == 'dev'
|
|
31
|
+
Requires-Dist: twine>=5.0.0; extra == 'dev'
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
|
|
34
|
+
# FlowJet
|
|
35
|
+
|
|
36
|
+
[](https://pypi.org/p/flowjet-agent)
|
|
37
|
+
[](https://pypi.org/p/flowjet-agent)
|
|
38
|
+
[](https://github.com/caesar0301/flowjet-agent/actions/workflows/ci.yml)
|
|
39
|
+
[](LICENSE)
|
|
40
|
+
|
|
41
|
+
🎥 [Watch the demo video on Vimeo](https://vimeo.com/1211730182)
|
|
42
|
+
|
|
43
|
+
**FlowJet** (`flowjet-agent`) is a one-shot coding-agent CLI for the terminal. Type a question, get an answer — no UI, no context-switching:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
flowjet-agent explain this repo
|
|
47
|
+
fj explain this repo # alias of flowjet-agent
|
|
48
|
+
fj -f what did we decide last time?
|
|
49
|
+
fjf what did we decide last time? # alias of fj -f
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
It runs on [soothe-nano](https://github.com/mirasoth/soothe-nano) — tools, skills, MCP, subagents, and progressive loading — with SQLite persistence so every thread is resumable.
|
|
53
|
+
|
|
54
|
+
> Package / formal CLI: **flowjet-agent** · aliases: **fj**, **fjf** (= `-f`) · Runtime: **soothe-nano** · Repo: **[flowjet-agent](https://github.com/caesar0301/flowjet-agent)**
|
|
55
|
+
|
|
56
|
+
See [docs/naming.md](docs/naming.md) for the formal naming model.
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## Install
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
pip install flowjet-agent
|
|
64
|
+
# or
|
|
65
|
+
uv tool install flowjet-agent
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Requires Python 3.11+.
|
|
69
|
+
|
|
70
|
+
## Configure
|
|
71
|
+
|
|
72
|
+
**Option A — Local model (guided):**
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
fj setup
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Walks you through an OpenAI-compatible endpoint (Ollama, LM Studio, vLLM, …) and writes the basics to `~/.soothe/config/nano.yml`.
|
|
79
|
+
|
|
80
|
+
**Option B — Cloud (no config file):**
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
export OPENAI_API_KEY=sk-...
|
|
84
|
+
fj summarize README.md
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Missing `nano.yml` falls back to `OPENAI_API_KEY` or `ANTHROPIC_API_KEY`.
|
|
88
|
+
|
|
89
|
+
## Doctor
|
|
90
|
+
|
|
91
|
+
Check whether this machine can run fj (tool binaries, providers, observability).
|
|
92
|
+
Requires ``soothe-nano`` with the ``diagnose`` API (1.0.8+):
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
fj doctor
|
|
96
|
+
fj doctor --deep
|
|
97
|
+
fj doctor --live-llm
|
|
98
|
+
fj doctor --format json
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
## Run
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
fj who are you
|
|
105
|
+
fj list Python files in this directory
|
|
106
|
+
fj refactor the parser to use dataclasses
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
## Conversation
|
|
112
|
+
|
|
113
|
+
Threads persist across runs in SQLite. Continue the latest, jump to a specific one, or list them:
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
fj -f and now add tests # continue latest active thread
|
|
117
|
+
fj -t abc123 continue from here # continue a specific thread
|
|
118
|
+
fj -l # list recent threads
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
## Flags
|
|
122
|
+
|
|
123
|
+
```text
|
|
124
|
+
fj [options] [--] <query...>
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
| Flag | Meaning |
|
|
128
|
+
|------|---------|
|
|
129
|
+
| `-f` / `--follow` | Continue the latest active thread |
|
|
130
|
+
| `-t ID` / `--thread` | Continue (or pin) a specific thread |
|
|
131
|
+
| `-l` / `--list` | List recent threads (newest first) |
|
|
132
|
+
| `-n NUM` | How many threads `-l` shows (`0` = all) |
|
|
133
|
+
| `-c PATH` / `--config` | Use an alternate `nano.yml` |
|
|
134
|
+
| `-w DIR` / `--workspace` | Workspace root |
|
|
135
|
+
| `--no-stream` | Wait for the full answer instead of streaming |
|
|
136
|
+
| `-v` / `--verbose` | Mirror tool calls on stderr |
|
|
137
|
+
|
|
138
|
+
Shell completion (AI-assisted, predicts natural-language intents, not just flags):
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
eval "$(fj completion zsh)" # or: fj completion bash
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
|
|
149
|
+
## Extend
|
|
150
|
+
|
|
151
|
+
### Skills
|
|
152
|
+
|
|
153
|
+
fj ships AgentSkills (planning, TDD, debugging, document tools, MCP builder, and more) and supports your own via `nano.yml`:
|
|
154
|
+
|
|
155
|
+
```yaml
|
|
156
|
+
skills:
|
|
157
|
+
- ~/.soothe/skills/my-reviewer
|
|
158
|
+
- ./skills/deploy
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
Each skill is a `SKILL.md` with frontmatter; progressive loading keeps the catalog compact and loads on demand.
|
|
162
|
+
|
|
163
|
+
### MCP servers
|
|
164
|
+
|
|
165
|
+
Connect any Model Context Protocol server:
|
|
166
|
+
|
|
167
|
+
```yaml
|
|
168
|
+
mcp_servers:
|
|
169
|
+
- name: filesystem
|
|
170
|
+
transport: stdio
|
|
171
|
+
command: npx
|
|
172
|
+
args: ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"]
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
With `defer: true` (default), MCP tools activate on demand.
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
## Development
|
|
180
|
+
|
|
181
|
+
```bash
|
|
182
|
+
git clone https://github.com/caesar0301/flowjet-agent.git
|
|
183
|
+
cd flowjet-agent
|
|
184
|
+
make sync-dev
|
|
185
|
+
make test
|
|
186
|
+
make lint
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
CI runs format, lint, and tests on Python 3.11–3.13; releases go GitHub Release → PyPI.
|
|
190
|
+
|
|
191
|
+
## Powered by
|
|
192
|
+
|
|
193
|
+
Built on [soothe-nano](https://github.com/mirasoth/soothe-nano). For a full TUI coding agent from the same stack, see [mirasoth/soothe](https://github.com/mirasoth/soothe).
|
|
194
|
+
|
|
195
|
+
## License
|
|
196
|
+
|
|
197
|
+
MIT
|