Skip to content

Module System Implementation#6768

Merged
bentsherman merged 26 commits into251117-module-systemfrom
251117-module-system-implementation
Mar 10, 2026
Merged

Module System Implementation#6768
bentsherman merged 26 commits into251117-module-systemfrom
251117-module-system-implementation

Conversation

@jorgee
Copy link
Contributor

@jorgee jorgee commented Jan 28, 2026

This pull request introduces a new module command-line interface for managing Nextflow modules, including installing, listing, and publishing modules. It adds a new module command with several subcommands, updates the CLI infrastructure to support unknown options for this command, and brings in new dependencies required for module packaging and extraction.

Major new features and CLI enhancements:

  • Added a new CmdModule class implementing the nextflow module command, with subcommands for install, list, publish, run, remove, and search. This includes full CLI argument parsing, usage/help handling, and subcommand delegation.
  • ModuleRun extends CmdRun installing the module and calling CmdRun with the downloaded module.

Launcher and CLI infrastructure updates:

  • Registered the new CmdModule command in the main Launcher class so it is available as a top-level command.
  • Modified the CLI parser in Launcher to allow unknown options for the module command and to pass these unknown options to the command implementation. [1] [2]
  • Updated the base CmdBase class to support storing and retrieving unknown CLI options, enabling more flexible argument handling for subcommands.

Dependency management:

  • Added org.apache.commons:commons-compress as a dependency for handling tar.gz extraction, which is necessary for module packaging and publishing.

Building and Testing
Current CI is failing becuase it requires a local development registry instance with modules API implemented. You will need it to update build.gradle to updated npr-api package with the new module API classes. Either with includeBuild or a Maven local repository. You will also need to deploy the registry locally and configure the registry field in nextflow.config to test the new CLI commans

Open Issue and TODOs:

  • Module version temporary in nextflow_spec.json for simplicity.
  • Print module run outputs
  • Remote module inclusion
  • Add documentation
  • Extend unit and integration tests

@jorgee
Copy link
Contributor Author

jorgee commented Jan 30, 2026

Some updates:

1.- I have added the print of process outputs when finishing the process execution.

2.- I have investigated the remote module inclusion and a possible implemetation:
When using the syntax parser V1, it is easy to implement the module resolution at IncludeDef. We can check if the module is installed and install if not exists.

However, when using syntax parser V2, the problem is that visitors and resolvers used for parsing are at nf-lang. So, even if I decouple the classes to download modules and import at nf-lang, there is no way to access the session, config builder, and we will add the npr-api classes. Not sure if it would be a good solution

So, what I have done is the following:

  • In the include resolver and visitor, I just convert the @scope/module to the expected path and check if it exists. If there is no local copy of the module, it fails at compile time and suggest the user to install it. If there is a local installation, it checks the versions and integrity at IncludeDef.
    I could also check the installation of the declared modules at CmdRun, then it will only fail if a module is used and not declared.

@bentsherman
Copy link
Member

@jorgee let's move the remote module inclusion piece out of this PR. you can put it in a separate PR if you want, either way Paolo will experiment with it separately

And for the module version config, in the interest of keeping the POC simple so that we can iterate quicker, let's keep the module versions in the JSON file. Paolo can also experiment with this separately if he wants

@jorgee jorgee force-pushed the 251117-module-system-implementation branch from 23fc2f2 to 7dd3e52 Compare February 5, 2026 12:45
@jorgee
Copy link
Contributor Author

jorgee commented Feb 6, 2026

Updated the branch as @bentsherman suggested

  • Modules version temporary in nextflow_spec.json
  • Remote inclusion PoC in Remote module inclusion #6815
  • Added docs and tests
  • It will be ready once changes in registry are aplied and new npr-api version generated

@pditommaso
Copy link
Member

I was giving a try to this, but cannot compile it

> Task :nextflow:compileGroovy
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
startup failed:
/Users/pditommaso/Projects/nextflow/modules/nextflow/src/main/groovy/nextflow/module/ModuleRegistryClient.groovy: 24: unable to resolve class io.seqera.npr.api.schema.v1.ModuleRelease
 @ line 24, column 1.
   import io.seqera.npr.api.schema.v1.ModuleRelease
   ^

/Users/pditommaso/Projects/nextflow/modules/nextflow/src/main/groovy/nextflow/module/ModuleRegistryClient.groovy: 25: unable to resolve class io.seqera.npr.api.schema.v1.PublishModuleResponse
 @ line 25, column 1.
   import io.seqera.npr.api.schema.v1.PublishModuleResponse
   ^

/Users/pditommaso/Projects/nextflow/modules/nextflow/src/main/groovy/nextflow/module/ModuleRegistryClient.groovy: 205: unable to resolve class io.seqera.npr.api.schema.v1.ModuleRelease
 @ line 205, column 37.
                return new GsonEncoder<ModuleRelease>() {}.decode(body)
                                       ^

/Users/pditommaso/Projects/nextflow/modules/nextflow/src/main/groovy/nextflow/module/ModuleRegistryClient.groovy: 472: unable to resolve class io.seqera.npr.api.schema.v1.PublishModuleResponse
 @ line 472, column 36.
               return new GsonEncoder<PublishModuleResponse>() {}.decode(body)
                                      ^

/Users/pditommaso/Projects/nextflow/modules/nextflow/src/main/groovy/nextflow/module/ModuleRegistryClient.groovy: 205: unable to resolve class io.seqera.npr.api.schema.v1.ModuleRelease
 @ line 205, column 37.
                return new GsonEncoder<ModuleRelease>() {}.decode(body)
                                       ^

/Users/pditommaso/Projects/nextflow/modules/nextflow/src/main/groovy/nextflow/module/ModuleRegistryClient.groovy: 205: unable to resolve class io.seqera.npr.api.schema.v1.ModuleRelease
 @ line 205, column 37.
                return new GsonEncoder<ModuleRelease>() {}.decode(body)
                                       ^

/Users/pditommaso/Projects/nextflow/modules/nextflow/src/main/groovy/nextflow/module/ModuleRegistryClient.groovy: 472: unable to resolve class io.seqera.npr.api.schema.v1.PublishModuleResponse
 @ line 472, column 36.
               return new GsonEncoder<PublishModuleResponse>() {}.decode(body)
                                      ^

/Users/pditommaso/Projects/nextflow/modules/nextflow/src/main/groovy/nextflow/module/ModuleRegistryClient.groovy: 472: unable to resolve class io.seqera.npr.api.schema.v1.PublishModuleResponse
 @ line 472, column 36.
               return new GsonEncoder<PublishModuleResponse>() {}.decode(body)
                                      ^

8 errors

@jorgee
Copy link
Contributor Author

jorgee commented Feb 10, 2026

To test this branch you need to do the following:

  1. Clone the registry repo and clone branch 251215-module-binary-registry-fixes

  2. Build and publish the npr-api version 0.20.1 in Maven local

$ make build
$ ./gradlew :npr-api:publishToMavenLocal 
  1. Deploy a local docker registry to store modules
    $ docker run -d --name docker-registry -p 5010:5000 registry:latest

  2. Run the Nextflow registry
    $ bash run.sh

  3. Clone Nextflow repo and checkout this branch

  4. Include the Maven local in the build.gradle file

         mavenCentral()
         maven { url 'https://repo.eclipse.org/content/groups/releases' }
         maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
+        mavenLocal()
         maven { url = "https://s3-eu-west-1.amazonaws.com/maven.seqera.io/releases" }
         maven { url = "https://s3-eu-west-1.amazonaws.com/maven.seqera.io/snapshots" }
  1. Build Nextflow as usual

Signed-off-by: jorgee <jorge.ejarque@seqera.io>
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
@jorgee jorgee force-pushed the 251117-module-system-implementation branch from 1785870 to 2432e90 Compare February 10, 2026 10:05
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
@jorgee jorgee mentioned this pull request Feb 11, 2026
@pditommaso pditommaso force-pushed the 251117-module-system-implementation branch from f4095a7 to b091d73 Compare February 16, 2026 23:17
@pditommaso

This comment was marked as outdated.

…te to v1 registry and other required fixes

Signed-off-by: jorgee <jorge.ejarque@seqera.io>
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
@jorgee
Copy link
Contributor Author

jorgee commented Feb 19, 2026

Update:

  • Add module info command
  • Update to registry API to v1
  • /api path expected in registry config URL
  • search only prints name and description (full for -json)

To test, you must run with registry branch fix-module-release-metadata

jorgee and others added 3 commits February 25, 2026 20:14
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
@jorgee jorgee force-pushed the 251117-module-system-implementation branch from 5aa950b to c3b02a8 Compare February 26, 2026 11:29
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
@jorgee jorgee marked this pull request as ready for review February 27, 2026 10:43
@jorgee jorgee requested a review from a team as a code owner February 27, 2026 10:43
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
… publish (-registry -> config.url -> default)

Signed-off-by: jorgee <jorge.ejarque@seqera.io>
@jorgee
Copy link
Contributor Author

jorgee commented Feb 27, 2026

Updated docs and other fixes. To test in dev, add the following lines in nextflow.config

registry {
     url='https://registry-dev.nextflow.io/api'
     apiKey='YOUR_REGISTRY_TOKEN'
}

@jorgee

This comment was marked as outdated.

@claude

This comment was marked as off-topic.

@pditommaso
Copy link
Member

Module System Code Review

CRITICAL (Must Fix)

1. Logic Bug — CmdModuleSearch validation (dead code)

CmdModuleSearch.groovy:64if (!args && args.size() != 1) is impossible: if !args is true, && short-circuits. Should be ||.

2. Inverted Condition — CmdModuleInfo (wrong log + potential NPE)

CmdModuleInfo.groovy:102-109 — Logs "No metadata found" when metadata IS present. Additionally, if fetchRelease throws, release stays null and the code falls through to printFormattedInfo which will NPE.

3. e.printStackTrace() in production code

ModuleRegistryClient.groovy:138 — Writes directly to stderr, bypassing the logging framework. Replace with log.debug or log.error.


IMPORTANT (Should Fix)

5. Checksum header name mismatch between code and tests

Production code checks X-NF-Module-Checksum, but tests stub X-Checksum. Tests pass but don't actually validate the real header.

6. Files.list() / Files.walk() stream resource leaks

ModuleStorage.groovy:126,171,409, ModuleChecksum.groovy:54, CmdModulePublish.groovy:222 — These streams must be closed (try-with-resources or .withCloseable{}). Compare with ModuleStorage.groovy:345 where this is done correctly.

7. removeModuleEntry always returns true

PipelineSpec.groovy:82-96 — Doesn't check if the key actually existed before returning true. Map.remove() returns the previous value (or null); the return value should be checked.

8. Bundle sent as raw bytes in JSON

CmdModulePublish.groovy:129-135byte[] in Gson JSON will be huge/inefficient. Consider multipart upload.

9. Files.readAllBytes() for checksum computation

ModuleChecksum.groovy:67,131 — Loads entire files into memory. Use DigestInputStream or read in chunks for large files.

10. Missing ModulesConfig in extensions.idx

RegistryConfig is registered but ModulesConfig is not — may not be discovered by the config scope mechanism.


SUGGESTIONS (Nice to Have)


Strengths

  • Zip slip / tar slip protection is correctly implemented
  • Good checksum verification with cleanup on mismatch
  • Solid test coverage with WireMock integration tests
  • Clean CLI subcommand pattern consistent with existing CmdPlugin
  • Proper Apache 2.0 headers, @CompileStatic, @Slf4j, Groovy idioms throughout

@pditommaso
Copy link
Member

Apologies the spam, but it looks valid points ☝️

Signed-off-by: jorgee <jorge.ejarque@seqera.io>
@jorgee
Copy link
Contributor Author

jorgee commented Mar 5, 2026

Update:

  • Addressed critical and important fixes except 8 (not required because bundle is limited to 1MB not compressed) and 10 (depends on where we decide to write module versions)
  • Change -json by -output
  • Add module URL in info command

TODO/to be decided:

  • remove flags
  • remove '@' (I will create another PR as it require changes also in remote inclusion)
  • module versions in nextflow_spec.json or nextflow.config

Signed-off-by: jorgee <jorge.ejarque@seqera.io>
@jorgee jorgee mentioned this pull request Mar 6, 2026
6 tasks
@bentsherman bentsherman requested a review from a team as a code owner March 6, 2026 15:08
bentsherman and others added 2 commits March 6, 2026 09:14
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
@jorgee
Copy link
Contributor Author

jorgee commented Mar 6, 2026

I have removed -keep-config for module remove. I have also changed its behaviour:

  • It fails when folder exists and .module-info doesn't exist or when there are modifications
  • Added the -force flag to remove in above cases
  • When removing with -keep-files, it removes the entry in spec and the .module-info file

Copy link
Collaborator

@christopher-hakkaart christopher-hakkaart left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor suggestions

jorgee and others added 2 commits March 9, 2026 09:30
Co-authored-by: Chris Hakkaart <chris.hakkaart@seqera.io>
Signed-off-by: Jorge Ejarque <jorgee@users.noreply.github.com>
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
@bentsherman
Copy link
Member

Merging into the main PR since we've resolved all of the requirements, let's continue to test and refine there

@bentsherman bentsherman merged commit 583285c into 251117-module-system Mar 10, 2026
19 of 20 checks passed
@bentsherman bentsherman deleted the 251117-module-system-implementation branch March 10, 2026 13:22
$ nextflow module run nf-core/fastqc --input 'data/*.fastq.gz' -version 1.0.0
```

The command accepts all standard Nextflow execution options (`-profile`, `-resume`, etc.):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't really say in the new docs where --reads and --index come from. It'd be good to have a bit more guidance about how people should know what CLI flags to use.

Could we get nextflow module run [name] --help to list available flags? That'd be really useful!

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's move this to #6650

pditommaso added a commit that referenced this pull request Mar 17, 2026
* Add Nextflow Development Constitution

Introduce comprehensive development constitution documenting core principles
and practices for Nextflow development including modular architecture,
test-driven quality assurance, dataflow programming model, licensing
compliance, DCO requirements, semantic versioning, and Groovy code standards.

The constitution codifies existing best practices from CLAUDE.md and
CONTRIBUTING.md to provide clear governance and quality standards for
the project.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Module adr v1

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Module adr v2

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* ADR: Nextflow remote modules system v2.1

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Add detailed CLI command descriptions to module system ADR [ci skip]

- Add comprehensive documentation for all module CLI commands
- Add `nextflow module run` command for standalone module execution
- Remove `module update` command to simplify the design
- Use single-dash prefix for Nextflow options, double-dash for module inputs
- Remove @ prefix from scope in CLI commands (keep only in DSL syntax)

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Simplify module spec: unify dependencies under requires

- Remove separate `dependencies` and `components` fields
- Expand `requires` to include:
  - `nextflow`: version constraint (unchanged)
  - `plugins`: array with name@constraint syntax
  - `modules`: array of module dependencies
  - `workflows`: array of workflow dependencies
- Unified version constraint syntax: `[scope/]name[@constraint]`
- Mark `components` as deprecated (use requires.modules)
- Update all examples in ADR and schema

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Add structured tool arguments to module spec schema

- Add `args` property to tools section for type-safe argument configuration
- Define toolArgSpec with flag, type, description, default, enum, required
- Support implicit variable `tools.<toolname>.args.<argname>` returning
  formatted flag+value (e.g., "-K 100000000")
- Support `tools.<toolname>.args` to return all args concatenated
- Document deprecation of ext.args/ext.args2/ext.args3 pattern
- Update ADR with Tool Arguments Configuration section and appendix

[ci skip]

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Update adr/20251114-module-system.md [ci skip]

Co-authored-by: Jorge Ejarque <jorgee@users.noreply.github.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Update adr/20251114-module-system.md [ci skip]

Co-authored-by: Jorge Ejarque <jorgee@users.noreply.github.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Update adr/20251114-module-system.md [ci skip]

Co-authored-by: Jorge Ejarque <jorgee@users.noreply.github.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Update adr/20251114-module-system.md [ci skip]

Expand deprecation notice to cover all ext.* custom directives

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Fix inconsistencies in module system ADR [ci skip]

- Use consistent module path format with version: modules/@scope/name@version/
- Fix directory structure example: samtools-view -> samtools/view
- Standardize on 'license' spelling (American English)
- Fix author -> authors (plural array format)

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Fix registry API path in comparison table [ci skip]

Remove @ prefix from scope in API path to match API definition

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Fix checksum format: sha256- -> sha256: [ci skip]

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Update module API to match registry implementation [ci skip]

- Update API endpoints to match seqeralabs/plugin-registry#266
- Use /api/modules base path (no v1 prefix)
- Use single {name} parameter with namespace (e.g., "nf-core/fastqc")
- Add separate /releases endpoint
- Simplify publish to single POST endpoint

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Update adr [ci skip]

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Simplify module storage and verification model [ci skip]

- Remove checksums from nextflow.config (registry is source of truth)
- Use single version per module locally (no version in directory path)
- Add .checksum file in module directory for integrity verification
- Simplify freeze command to only pin transitive dependency versions
- Checksum mismatch reports warning instead of automatic re-download
- Remove resolved open question about checksum verification

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Update adr/20251114-module-system.md [ci skip]

Co-authored-by: Jorge Ejarque <jorgee@users.noreply.github.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Clarify module resolution rules for version changes vs local modifications [ci skip]

- Added Resolution Rules table clearly specifying behavior for each scenario:
  - Version change (local unmodified): automatically replace with declared version
  - Local modification (checksum mismatch): warn and protect local changes
  - Use -force flag to override locally modified modules
- Updated install command behavior to reflect checksum verification
- Updated Technical Details with expanded resolution flow

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* ADR v2.3: Fix resolution rules consistency and add version entry [ci skip]

- Fixed Resolution Rules table: locally modified modules will NOT be
  replaced unless -force is used (was incorrectly saying "will be replaced")
- Added Version 2.3 changelog entry documenting:
  - Resolution Rules table with clear behavior matrix
  - Local modification protection with -force flag
  - Simplified storage model (single version per module)
  - .checksum file for fast integrity verification

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Fix Version 2.1 date typo: 2025 -> 2024 [ci skip]

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Add module system client specification [ci skip]

Specification for Nextflow module system client implementation based on
ADR 20251114-module-system.md. Covers:

P1 (Core):
- Install and use registry modules via @scope/name syntax
- Run modules directly from CLI without wrapper workflow
- Structured tool arguments replacing ext.args pattern

P2 (Important):
- Module version management and freeze command
- Module integrity protection with checksum validation

P3 (Nice to have):
- Remove module command
- Search and discover modules
- Publish module to registry

Registry backend is out of scope (assumed implemented).

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Remove transitive dependency resolution from module system [ci skip]

- Remove `freeze` command from CLI
- Remove transitive dependency install behavior
- Remove orphaned transitive dependency removal from `remove` command
- Update rationale and consequences sections
- Simplify dependency resolution flow
- Update ADR to version 2.4

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Update adr/20251114-module-system.md [ci skip]

Co-authored-by: Jorge Ejarque <jorgee@users.noreply.github.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Update adr/20251114-module-system.md [ci skip]

Co-authored-by: Phil Ewels <phil.ewels@seqera.io>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Update modules plan [ci skip]

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Remove tools config [ci skip]

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Simplify module system requires definition [ci skip]

- Remove plugins, modules, subworkflows from requires block
- Spec now focused on process modules only
- Dependencies managed via nextflow.config

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Replace tool arguments with module parameters in ADR [ci skip]

- Module parameters defined in meta.yaml params section with name, type, description, and example attributes
- Removed tools args property and specification
- Updated schema and examples throughout

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Update specs + adr [ci skip]

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Resolve some conflicts with nextflow-io/schemas#10

Signed-off-by: Ben Sherman <bentshermann@gmail.com>

* Update adr/20251114-module-system.md [ci skip]

Co-authored-by: Ben Sherman <bentshermann@gmail.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Extract module parameters to separate spec [ci skip]

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* docs: clarify path name for staged task inputs (#6869)

Co-authored-by: Ben Sherman <bentshermann@gmail.com>

* Add devcontainer (#6792)

Co-authored-by: Phil Ewels <phil.ewels@seqera.io>
Co-authored-by: Ben Sherman <bentshermann@gmail.com>

* Fix vertical alignment in timeline report (#6794)

* Ensure main script is first in the WorkflowRun lineage record (#6845)

* Add whitespace rules to .editorconfig (#5606)

* docs: Update your first script to use outputs (#6500)

* Update AWS CLI install docs to bypass conda install TOS prompt (#6685)

* Clarify onError and onComplete handler descriptions (#6709) [ci fast]

* Use explicit memory units for LSF executor (#5217)

Signed-off-by: Ben Sherman <bentshermann@gmail.com>

* Treat LSF job status UNKWN as HOLD (#5756)

* Allow boolean params to implicitly default to false (#6764)

* Sched core implementation alpha1 (#6242)


Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Co-authored-by: Lorenzo Fontana <fontanalorenz@gmail.com>

* Revert version 26.01.1-edge

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Bump copyright 2026

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Handle Azure Batch ActiveJobAndScheduleQuotaReached with retry (#6874)

* Handle Azure Batch ActiveJobAndScheduleQuotaReached with retry (#5575)

Add retry logic when Azure Batch returns HTTP 409 with
ActiveJobAndScheduleQuotaReached error code during job creation,
instead of failing immediately. Configurable via
azure.batch.maxJobQuotaRetries (default 3) and
azure.batch.jobQuotaRetryDelay (default 2 min).

Generated by Claude Code

Signed-off-by: adamrtalbot <12817534+adamrtalbot@users.noreply.github.com>

* Refactor job quota retry to use Failsafe RetryPolicy

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

---------

Signed-off-by: adamrtalbot <12817534+adamrtalbot@users.noreply.github.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
Co-authored-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

* [ci fast] Add agent output mode (NXF_AGENT_MODE)

Add AI agent-friendly output mode activated via NXF_AGENT_MODE=1.

When enabled, Nextflow replaces the interactive ANSI progress display with
minimal, structured tagged lines optimized for AI agent context windows:

  [PIPELINE] name version | profile=X
  [WORKDIR] /path/to/work
  [PROCESS hash] name (tag)
  [WARN] deduplicated warning
  [ERROR] name with exit/cmd/stderr/workdir
  [SUCCESS|FAILED] completed=N failed=N cached=N

Key changes:
- LogObserver interface as common abstraction for AnsiLogObserver and AgentLogObserver
- Session holds a single logObserver field instead of two concrete fields
- DefaultObserverFactory creates both observer types using the same pattern
- AgentLogObserver filters hash-prefixed log lines to avoid duplicating [PROCESS] output
- Workflow output (view operator) passes through to stdout in agent mode
- Renamed env var from NXF_AGENT to NXF_AGENT_MODE
- Added NXF_AGENT_MODE to environment variables documentation

* Bump nf-amazon@3.7.1

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Bump nf-azure@1.22.0

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Bump nf-google@1.26.1

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Bump nf-tower@1.21.0

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Bump nf-seqera@0.12.0

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Bump nf-tower@1.21.0 nextflowVersion

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Bump nf-seqera@0.12.0 nextflowVersion and README

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Fix AgentLogObserver println clash with Groovy GDK method

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Add Summary section to plugin README files

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* [release] [ci fast] Nextflow version 26.02.0-edge

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Fix docs [ci skip]

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

* Add logStreamId to Tower task record (#6877)

Propagate the log stream identifier from TraceRecord to the Tower
task record so that Seqera Platform can link tasks to their cloud
log streams.

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

* Don't include container in task trace when containers are not enabled (#6824)

* Propagate errors from workflow outputs (#6876)

* Fix type detection of CLI params in v2 config parser (#6765)

* Add NVMe disk allocation and diskMountPath support (#6879) [ci fast]

* Add NVMe disk allocation and diskMountPath support for Seqera executor

For task/node allocation the default is /tmp; for nvme allocation
the default is the server-configured NVMe mount path (typically /scratch).


Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

* Version 2.7: rename `.checksum` to `.module-info`, remove `@` prefix from module scopes, remove version pinning from `nextflow.config`

Signed-off-by: Ben Sherman <bentshermann@gmail.com>

* Module System Implementation (#6768)

Signed-off-by: jorgee <jorge.ejarque@seqera.io>

* minor edits

Signed-off-by: Ben Sherman <bentshermann@gmail.com>

* Cleanup module run output

Signed-off-by: Ben Sherman <bentshermann@gmail.com>

* Fix meta.yaml -> meta.yml, module manifest -> module spec

Signed-off-by: Ben Sherman <bentshermann@gmail.com>

* Fix failing test

Signed-off-by: Ben Sherman <bentshermann@gmail.com>

* fix tests

Signed-off-by: jorgee <jorge.ejarque@seqera.io>

* modify module list to skip subdirectories of directories that already contains the .module-info. This folders can't be a module

Signed-off-by: jorgee <jorge.ejarque@seqera.io>

* Update docs

Signed-off-by: Ben Sherman <bentshermann@gmail.com>

* Apply suggestion from @pditommaso [ci skip]

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>

---------

Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
Signed-off-by: adamrtalbot <12817534+adamrtalbot@users.noreply.github.com>
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Jorge Ejarque <jorgee@users.noreply.github.com>
Co-authored-by: Phil Ewels <phil.ewels@seqera.io>
Co-authored-by: Ben Sherman <bentshermann@gmail.com>
Co-authored-by: Abi <llawlietbagsum@gmail.com>
Co-authored-by: Peter Kneale <PeterKneale@gmail.com>
Co-authored-by: Chris Hakkaart <chris.hakkaart@seqera.io>
Co-authored-by: Rintze Zelle <78232505+rzelle-lallemand@users.noreply.github.com>
Co-authored-by: Colin J. Brislawn <cbrisl@gmail.com>
Co-authored-by: Lorenzo Fontana <fontanalorenz@gmail.com>
Co-authored-by: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com>
Co-authored-by: Edmund Miller <20095261+edmundmiller@users.noreply.github.com>
Co-authored-by: jorgee <jorge.ejarque@seqera.io>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants