Currently, it is not possible to get the current tags from the current singleton. We could add them.
Contributor guide
Tech stack
python
Domain
backend
Issue type
feature
DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
2
Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
under 1 hour
Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
stale
ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
clear
Prerequisites
PythonMetaflow basics
Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
85
Research direction
Look at the implementation of the `current` singleton in Metaflow, likely in `metaflow/current.py`. The singleton provides access to the current run context. To add tags, you need to expose the tags associated with the current run. Check how tags are stored in the run object and add a property or method to `current` to retrieve them. Review any existing tests for the current singleton to ensure consistency.