Project Status
Run the status script and interpret the output for the user.
Steps
Run
bactopia-statusvia the wrapper script:bash .agents/skills/project-status/scripts/run-bactopia-status.sh --bactopia-path /home/rpetit3/repos/bactopia/bactopia --jsonParse the JSON output and present a clean, readable summary. Lead with:
- Component counts (modules / subworkflows / workflows)
- GroovyDoc coverage per tier (doc_count vs total)
- Tag coverage per tier — highlight any required tags below 100%
- nf-test coverage (workflows only)
- Any structural issues (missing required files)
Highlight the most important gaps — prioritize by:
- Missing required files (module.config, schema.json) first — these are structural breaks
- Missing GroovyDoc second — documentation gaps
- Missing nf-tests last — coverage gaps
If the user asks "what should I work on next?", suggest the highest-priority gaps from the output.
Notes
- The wrapper script auto-discovers
bactopia-status(checks PATH, then conda envs) - nf-test coverage is workflows-only — modules and subworkflows are excluded for now
- Report whether the root pipeline test exists (
nftest.root_test)
JSON Output Fields
timestamp— when the report was generatedrepo— path to the Bactopia repositorygit—branch,commit,modifiedfile countcounts—modules,subworkflows,workflowstiers— per-tier detail, each withtotal,doc_count,issues[],tag_coveragetag_coverage— map of tag name to count of components that have it
nftest—total(workflow count),tested,root_test
GroovyDoc Fields
All components use these required tags:
@status—stable,beta, ordeprecated@keywords— comma-separated search terms@tags—complexity:<simple|moderate|complex> input-type:<single|multiple|parameter> output-type:<single|multiple> features:<list>@citation— comma-separated bibtex keys@note— optional caveats or requirements
Modules and subworkflows also use:
@input— input channel descriptions (can be multi-line for records)@output— output channel descriptions (single-line)
Subworkflows additionally use:
@subworkflows— list of included subworkflows (directory keys)@modules— list of included modules (directory keys)
Entry workflows use:
@subworkflows— included subworkflows (directory keys); workflows never call modules directly, so@modulesis not used@input— parameter inputs (e.g.,rundir)@section— groups published outputs@publish— file patterns with descriptions (within sections)@note— can appear at top level or within a section
Required Files per Tier
- Modules:
module.config,schema.json - Subworkflows: none beyond
main.nf - Workflows: none beyond
main.nf