An AI coding assistant
Project description
Welcome to Roksta! 🤘
Model-efficient AI coding built on task decomposition.
Most tools use a single, expensive model for everything, encouraging assumptions and losing clarity over long sessions. This forces repeated iterations and quickly drives up costs.
Roksta decomposes work into simpler tasks and routes each one to an appropriate LLM. This reduces unnecessary spend without compromising performance, while clarity and transparency minimise rework. The same architecture improves reliability and scalability as projects grow.
Here's what we believe an AI coding assistant should and shouldn't do:
👍 They should:
- Performance: Reduce complexity via task decomposition.
- Cost & Speed: Use fast, low-cost models for simpler tasks.
- Clarity: Ask for details instead of assuming.
- Transparency: Explain the plan before coding.
👎 They shouldn't:
- Degrade in performance as the session grows.
- Be locked to a single LLM provider.
- Have expensive subscriptions.
- Impose arbitrary usage limits.
Roksta delivers all the above with simple pay-as-you-go pricing — no subscription required.
Roksta's architecture is informed by research on long-horizon task decomposition, including work such as Solving a Million-Step LLM Task with Zero Errors.
Table of Contents
- Installation & Setup
- Usage
- Recommended Workflows
- Command Reference
- Command Line Parameters
- Troubleshooting
- Terms & Conditions
Installation & Setup
Prerequisites
- Python 3.11 or later
- pipx installed
Supported Platforms
- Linux (x86_64, aarch64)
- macOS (x86_64, arm64)
- Windows (64-bit)
Installation
pipx install roksta
pipx ensurepath
Launching Roksta
Navigate to your project's root folder and run:
roksta
Once launched, you will see a welcome screen and instructions on how to get started.
Initial Setup
Run the /init command in Roksta to initialise the codebase. This step prepares the configuration files and indexes your project structure. This can take a few minutes depending on the size of your project. However, it only needs to be done once and significantly speeds up Roksta during subsequent runs.
The command also creates a .roksta folder in the project directory and adds it to the .gitignore file. It also creates .rokstarc and .rokstaignore files in the project root folder that provides Roksta with project specific configuration details.
We recommend that you edit .rokstaignore to make it specific for your project. A better specified file will improve Roksta's speed and reduce token usage which ultimately reduces the cost of using Roksta.
You're now ready to start using Roksta! 🤘
PS: Roksta also supports an AGENTS.md file in the project root folder.
Usage
Setting Goals
Once Roksta has been initialised, you can tell it what you want it to do by issuing the /goal command and then specifying your goal in the input box. The input box accepts multi-line inputs, so you will need to press Ctrl+Enter or Ctrl+S to submit your goal. macOS users may use the Cmd key instead of Ctrl.
Directives can be used to control how Roksta behaves. They are:
-
#full-auto: Instructs Roksta to work on the goal and apply changes without requiring any human intervention. It's therefore important to ensure that the goal is well specified. -
#clarify: Force goal clarification even in full-auto mode. -
#no-clarify: Skip goal clarification. -
#yolo: Allow Roksta to run any shell command without asking for permission, can be useful when combined with the #full-auto directive. -
#thinking(<level>): Adjusts the AI's computational effort for the task. The following class of models will be used by default:gpt-5-mini,grok-4-fast,gemini-2.5-flash,claude-haiku-4.5.<level>can be:fast: Uses faster models (e.g.mini,fast,flash) or fast inference providers (e.g. Cerebras) or a combination to deliver results faster.more: Uses models that think more. Useful for more complex tasks where deeper analysis is required. The following types of models used will be:gpt-5,grok-4,gemini-2.5-pro,claude-sonnet-4.5.max: Uses the most powerful models available. The following types of models used will be:gpt-5.2 (xhigh),claude opus 4.5,gemini-3-pro.
- If multiple
#thinkingdirectives are used in a single goal, the last one specified will take precedence. - Example:
Refactor the authentication module. #thinking(more) - Note: If thinking is not set, Roksta will dynamically choose the thinking level depending on the goal's difficulty.
-
#llm-family(<family>): Specifies the preferred LLM family for the task (case-insensitive). Accepted values:OpenAIGeminiAnthropicxAI
This directive guides Roksta's model selection to balance performance and cost. Example usage:
Refactor data pipeline. #llm-family(Gemini) -
#commit: Automatically commits the changes made by Roksta to your local git repository after they have been applied. It will stage only the files modified or deleted by Roksta in the current run and use an auto-generated commit message. This does not push the changes to a remote repository. Can be overridden by the#no-commitdirective. -
#no-commit: Prevents all forms of automatic committing for the specific goal to which it's applied, overriding any global auto-commit settings or the#commitdirective. -
#test: Temporarily force running of tests for this goal run if a test command is configured in.rokstarc. If no test command is configured a warning is printed and no tests are attempted. This directive only affects the current goal execution and does not persist to project configuration. -
#no-test: Prevents automatic running of tests even if testing has been enabled via the/testing oncommand. Takes precedence over#testif both are present. -
#build: Temporarily force a build for this goal run if a build command is configured in.rokstarc. If no build command is configured a warning is printed and no build is attempted. This directive only affects the current goal execution and does not persist to project configuration. -
#no-build: Temporarily skip building for this goal run. Takes precedence over#buildif both are present. This directive only affects the current goal execution and does not persist to project configuration.
The following directives can be used to tune the context window to help improve performance:
#focus(<pattern>): Add a file or glob pattern to include as context for understanding the goal.#ignore(<pattern>): Exclude files from consideration entirely.
If multiple directives of the same type are used, all specified patterns will be merged. Each directive should be on its own line, and directives may be placed anywhere in the goal text.
Recommended Workflows
We recommend using the following workflows when working with Roksta.
Start with /goal
This is the primary way to get Roksta to work on a specific task, particularly when you have a clear objective in mind, like adding a new feature or refactoring existing code.
-
Submit a goal using the
/goalcommand. Don't make goals too ambitious, if it would take an experienced developer over one week to complete it, it's probably worth breaking the goal down into smaller chunks. Ideally, something that would take 1-3 days of coding. -
Don't worry about being vague when specifying your goal. Roksta will ask clarifying questions if it needs more information. If you're not sure about a question, just say so and Roksta will pick a sensible default.
-
Review the proposed plan and provide feedback. You can ask Roksta to make changes to the plan if you so wish.
Start with /chat
If you're not sure about the problem you're trying to solve (e.g. a bug or a design question), or if you want to explore the codebase before setting a goal, start with the /chat command.
-
Start a chat session using the
/chatcommand to discuss and analyse the bug for example. -
Once you and Roksta have a good understanding of the issue, ask Roksta to launch a goal to fix the bug. It will start a new goal and prepopulate the input box with a proposed goal statement. You can edit this if you wish before submitting it.
-
Roksta will include the
#no-clarifydirective automatically when launching the goal from chat mode but you can remove this if you want Roksta to ask clarifying questions about the bug fix.
Tips:
- Activate a git branch for feature or bug fix work to keep changes isolated.
- Review code changes using your IDE or a diff tool before accepting them.
- Accept/edit/discard changes as you see fit and commit.
Command Reference
Below are the commands that are available in Roksta. Commands that require the user to be logged in are noted accordingly.
/help
- Description: Displays all available commands along with a help message.
/clear
- Description: Clears the output area.
/quit
- Description: Quits the application. You can also use
/exitorCtrl+Qto quit.
/init
- Description: Initialises the codebase. Use this command if Roksta has not yet been initialised. This may take a few minutes and only needs to be done once. If you omit this step, Roksta will automatically run the initialisation step when you give it your first goal.
/reindex
-
Requires login
-
Description: Updates Roksta's index on files and folders. This normally happens at the start of every goal.
-
Usage:
/reindex
/goal [continue]
-
Requires login
-
Description: Starts the process by which you can ask Roksta to work on achieving a specific goal. Click here to understand how to set goals for Roksta to work on. Passing the optional
continueargument maintains the context of the previously completed goal.
/chat [continue]
-
Requires login
-
Description: Starts an interactive chat session where you can ask questions about your codebase. Passing the optional
continueargument maintains the context of the previous chat session. Roksta can read your files to provide contextually-aware answers. This command is for querying and understanding your code; to apply code changes, use the/goalcommand. To exit the chat session, use the/endcommand (/quitand/exitwill also work) or pressCtrl+R. -
Commands The chat interface supports the following slash commands:
/thinking <level>: Adjusts the AI's computational effort. Accepted levels:defaultfastmoremax
/save: This will save the chat transcript./end,/exitor/quit: Ends the chat session./help: Displays chat related help information.
/login
-
Description: Logs you in. Logging in is a prerequisite to use Roksta.
Note: Once you log in, Roksta will store your login token in the .roksta.json file in your home directory. It will use this token to auto-login every time to start up Roksta. If you don't want it to log you in automatically, set the value of auto to false.
/add-funds
-
Requires login
-
Description: Adds funds to your account. You cannot add less than $5 to your account per transaction.
-
Usage:
/add-funds <amount> -
Example:
/add-funds 10
/payment-details
-
Requires login
-
Description: Opens a Stripe webpage for providing or updating your payment details. By default Roksta will take a payment of $10 every time the balance drops below $2. You can toggle the auto-payment feature and set how much it adds and the threshold amount using the
/auto-chargecommand. The threshold can't be less than $1 and the payment amount can't be less than $5.
/auto-charge
-
Requires login
-
Description: Configures automatic top-up of your account balance. When enabled, Roksta will automatically add funds to your account if your balance drops below a specified threshold.
-
Usage:
/auto-charge <on|off|status> [charge_amount trigger_balance] -
Subcommands:
on: Enables auto-charge. Ifcharge_amountandtrigger_balanceare not provided, it uses the default values ($10.00 charge amount, $2.00 trigger balance) or the last saved values.off: Disables auto-charge.status(or no parameters): Show the current auto-charge configuration.
-
Parameters:
<on|off|status>: (Required)[charge_amount]: (Optional) The amount to be automatically charged to your payment method. Minimum $5.00. If provided,trigger_balancemust also be provided. Defaults to $10.00 if enabling withonand no custom values are set.[trigger_balance]: (Optional) The balance threshold below which an auto-charge will be triggered. Minimum $1.00. If provided,charge_amountmust also be provided. Defaults to $2.00 if enabling withonand no custom values are set.
-
Example:
/auto-charge on 15 3 -
Notes:
- If you wish to specify
charge_amountandtrigger_balance, both must be provided.
- If you wish to specify
/auto-commit
-
Description: Enables, disables, or reports the status of automatic commits for this project. If no subcommand is provided, it defaults to
status. The setting is stored in the project configuration file at<project-root>/.rokstarcas the top-level keyauto_commit. -
Usage:
/auto-commit <on|off|status> -
Example:
/auto-commit on
/linting
-
Description: Manage project-specific linting configuration stored under the top-level
lintingkey in your project config file. The/lintingcommand records three configuration values (enabled, check and fix) in<project-root>/.rokstarc. It does NOT run linters; it only saves the commands Roksta can reference later. -
Usage:
/linting <on|off|set|clear|status> ["check command"] ["fix command"] -
Subcommands:
status(or no parameters): Show the current values oflinting.enabled,linting.checkandlinting.fix.on: Enable linting by settinglinting.enabled= true and persisting the project config.off: Disable linting by settinglinting.enabled= false and persisting the project config.set "check" ["fix"]: Save acheckcommand and an optionalfixcommand, and setlinting.enabled= true. Thecheckparameter is required and must be non-empty. Example:/linting set "flake8 ." "black .".clear: Remove or clear thelintingconfiguration (sets enabled = false and empties check/fix). If no config file exists the command will clear the in-memory project config instead.
-
Behaviour:
- If no project config file exists the command will create one and initialise it with sensible defaults.
- If the project config file contains invalid JSON,
/lintingwill refuse to operate and will prompt you to fix.rokstarcmanually.
-
Examples:
/linting status /linting on /linting off /linting set "flake8 ." "black ." /linting clear
/testing
-
Description: Manage project-specific testing configuration stored under the top-level
testingkey in your project config file. The/testingcommand records two configuration values (enabled and command) in<project-root>/.rokstarc. It does NOT run the tests; it only saves the command Roksta can reference later. -
Usage:
/testing <on|off|set|clear|status> ["test command"] -
Subcommands:
status(or no parameters): Show the current values oftesting.enabledandtesting.command.on: Enable testing by settingtesting.enabled= true and persisting the project config.off: Disable testing by settingtesting.enabled= false and persisting the project config.set "command": Save the testing command and settesting.enabled= true. The command parameter is required and must be non-empty. Example:/testing set "pytest".clear: Remove or clear thetestingconfiguration (sets enabled = false and empties command). If no config file exists the command will clear the in-memory project config instead.
-
Behaviour:
- If no project config file exists the command will create one and initialise it with sensible defaults.
- If the project config file contains invalid JSON,
/testingwill refuse to operate and will prompt you to fix.rokstarcmanually.
-
Examples:
/testing status /testing on /testing off /testing set "jest" /testing clear -
Example workflow:
- Configure the project test command:
/testing set "pytest" - Use
#testin your goal to trigger the configured test command for this run. Example goal:Run unit tests for the payments module and fix failures. #test
- Configure the project test command:
/building
-
Description: Manage project-specific build configuration stored under the top-level
buildingkey in your project config file. The/buildingcommand records two configuration values (enabled and command) in<project-root>/.rokstarc. It does NOT run your build; it only saves the command Roksta can reference later. -
Usage:
/building <on|off|set|clear|status> ["build command"] -
Subcommands:
status(or no parameters): Show the current values ofbuilding.enabledandbuilding.command.on: Enable building by settingbuilding.enabled= true and persisting the project config.off: Disable building by settingbuilding.enabled= false and persisting the project config.set "command": Save the build command and setbuilding.enabled= true. The command parameter is required and must be non-empty. Example:/building set "npm run build".clear: Remove or clear thebuildingconfiguration (sets enabled = false and empties command). If no config file exists the command will clear the in-memory project config instead.
-
Behaviour:
- If no project config file exists the command will create one and initialise it with sensible defaults.
- If the project config file contains invalid JSON,
/buildingwill refuse to operate and will prompt you to fix.rokstarcmanually.
-
Examples:
/building status /building on /building off /building set "npm run build" /building clear
/logging
-
Description: Manage tool call logging configuration. Enabling this will log tool call details to
.roksta/tool_call.logimmediately and across sessions. -
Usage:
/logging <on|off|status> -
Subcommands:
on: Enables tool call logging and saves the preference.off: Disables tool call logging for future sessions and saves the preference.status(or no parameters): Displays the current logging status and usage information.
/redeem
-
Requires login
-
Description: Redeems a credit code to update your account balance.
-
Usage:
/redeem <credit_code> -
Example:
/redeem CreditCode123
/usage
-
Requires login
-
Description: Displays the session usage and cost, along with your current balance.
/dev-rate
-
Description: Used to set the developer rate which will be used to calculate developer savings. It will display the rate currently being used if it's called without providing a rate.
-
Usage:
/dev-rate [hourly_rate] -
Example:
/dev-rate 75
/feedback
-
Requires login
-
Description: Submits feedback regarding the application.
/upgrade
-
Description: Upgrades Roksta to the latest version. This command only works if Roksta was installed via
pipx. -
Usage:
/upgrade
Command Line Parameters
Roksta also accepts command line parameters to allow batch execution.
-
--goal: Provide a file which contains the goal that Roksta will immediately start working towards on startup. e.g.
roksta --goal goal_file.txt. Ensure you include the#full-autodirective within the goal to enable it to operate in a fully automatic manner. Otherwise, Roksta will pause for user feedback. -
--exit: Instructs Roksta to exit once the goal has been completed. e.g.
roksta --goal goal_file.txt --exit -
--no-index: Prevents Roksta from constructing an index for the codebase. Setting this parameter will reduce the cost of running a one-off task but will degrade performance.
-
--benchmark: A useful shortcut when running Roksta within benchmarks. Equivalent to setting
--full-auto --yolo --exit --no-index. -
# Directives: All goal directives, e.g.
#full-auto, can also be provided as command line parameters. Just replace the#with--on the command line. Directives that take parameters, e.g.#thinking(more)can also be used; simply provide the parameter after a space or an=sign, e.g.--thinking moreor--thinking=more.
If directives are also specified within the goal, the two lists are merged to create a single list of directives that are then implemented.
Troubleshooting
-
Login is mandatory: Roksta won't work if you don't log in.
-
Multi-line input: Sometimes, Roksta will switch to multi-line mode, so if you can't submit your input with just Enter, try Ctrl+Enter or Ctrl+S. Note that if you use Roksta within an IDE's terminal, Ctrl+Enter might not work as IDEs sometimes capture that combination, use Ctrl+S instead. macOS users may use the Cmd key instead of Ctrl.
-
Initialisation delay: The
/initcommand may take several minutes on first run as it indexes your codebase. Please be patient during this process. -
Command not recognized: If you encounter a message stating that a command is not recognized, double-check the spelling and ensure that you are using the correct multi-line format.
Happy building and Rok on!🤘
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file roksta-0.5.2-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: roksta-0.5.2-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26d1dbff42578f5369919624fd4db68bdeab6c9d0bc345be0a4ca2a218062ec4
|
|
| MD5 |
c82cda50d54420368ca975095540ce68
|
|
| BLAKE2b-256 |
19ce84bd1d0a49e8184fae4bae1fd3e0bf2f525daa148e3fbcb9ddfa3718fc8c
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp314-cp314t-win_amd64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp314-cp314t-win_amd64.whl -
Subject digest:
26d1dbff42578f5369919624fd4db68bdeab6c9d0bc345be0a4ca2a218062ec4 - Sigstore transparency entry: 1116813894
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: roksta-0.5.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 5.4 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
560d11fede63a7001b4205a3d7e3bfbea20e28c47298950904590b08b6cdb5c5
|
|
| MD5 |
c784e62e8e60cf32cdd9f0e22f07a67a
|
|
| BLAKE2b-256 |
cdf612a7ba37f9ee711c6d823ca43fe95cdcaa74df6793ea892603b9a338129b
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
560d11fede63a7001b4205a3d7e3bfbea20e28c47298950904590b08b6cdb5c5 - Sigstore transparency entry: 1116813803
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: roksta-0.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 5.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef1864b0f7b412891edf1b9e63ed6422341341738d167ac0521cc5e2ba4af5d9
|
|
| MD5 |
cb840080ff4d3c953645aab99ec7d0f9
|
|
| BLAKE2b-256 |
61d2877edd6199d439c3b032b9a607a84ef15b14edbc0c248146a3f6c2f42476
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
ef1864b0f7b412891edf1b9e63ed6422341341738d167ac0521cc5e2ba4af5d9 - Sigstore transparency entry: 1116813884
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp314-cp314t-macosx_10_15_universal2.whl.
File metadata
- Download URL: roksta-0.5.2-cp314-cp314t-macosx_10_15_universal2.whl
- Upload date:
- Size: 9.6 MB
- Tags: CPython 3.14t, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16abdd09e2a2fb1ad3bd937bc29db302d6f5a8d598bd4fd7ae33b5dee0db9987
|
|
| MD5 |
ea76ad5c29c6958e739c0066af82f418
|
|
| BLAKE2b-256 |
5e9bb19625c874f652aa5306e1f428a52659d8a43bc05c8cbb6cca0983c9ccb1
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp314-cp314t-macosx_10_15_universal2.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp314-cp314t-macosx_10_15_universal2.whl -
Subject digest:
16abdd09e2a2fb1ad3bd937bc29db302d6f5a8d598bd4fd7ae33b5dee0db9987 - Sigstore transparency entry: 1116813746
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: roksta-0.5.2-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c13bad3d7fd4588e3c7ec8296f6d387b2ca5068509ad4a971d24616fbbe665c9
|
|
| MD5 |
ec8eb1d957f77012da23acdf106f843c
|
|
| BLAKE2b-256 |
22ea4e33dc62d7b0930f470da8509ceefd2ba8e2593a789bb919f7b9be80ae6a
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp314-cp314-win_amd64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp314-cp314-win_amd64.whl -
Subject digest:
c13bad3d7fd4588e3c7ec8296f6d387b2ca5068509ad4a971d24616fbbe665c9 - Sigstore transparency entry: 1116813800
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: roksta-0.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f79893930b68a769f81eb2e2b2f6ba2a5551b4989dcd1d9f792efc9a8dd5e034
|
|
| MD5 |
2f7ab16604a0bacb3284cf06ed9f3b36
|
|
| BLAKE2b-256 |
0b4d869d8942e8efbd43dce19ab5bb3e3444f642a8371f25da39f591e8043d0a
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
f79893930b68a769f81eb2e2b2f6ba2a5551b4989dcd1d9f792efc9a8dd5e034 - Sigstore transparency entry: 1116813793
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: roksta-0.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0075ae266add8293223c392405e3e406028e0be9f5cfc93212c9348b93a4b6d9
|
|
| MD5 |
f8db05b91654d5a930209bfde8dd5149
|
|
| BLAKE2b-256 |
54f383dfbb97bdd3de85adca4a8fcdc68dddf5266030372f642abeaea37e8cb7
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
0075ae266add8293223c392405e3e406028e0be9f5cfc93212c9348b93a4b6d9 - Sigstore transparency entry: 1116813857
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp314-cp314-macosx_10_15_universal2.whl.
File metadata
- Download URL: roksta-0.5.2-cp314-cp314-macosx_10_15_universal2.whl
- Upload date:
- Size: 8.9 MB
- Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e609fe6d536cdd192fc04d8aecc2780d19e3d2d80712b06cfd98f59f1a099480
|
|
| MD5 |
ef9a6ca8eebd6455030e8ac9c4348ab2
|
|
| BLAKE2b-256 |
281cc02e0768692ca1d4f7324b78a677a8ec8857099e56181ad005672c795ab1
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp314-cp314-macosx_10_15_universal2.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp314-cp314-macosx_10_15_universal2.whl -
Subject digest:
e609fe6d536cdd192fc04d8aecc2780d19e3d2d80712b06cfd98f59f1a099480 - Sigstore transparency entry: 1116813872
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: roksta-0.5.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fbe5489d1b5173d5d7945a2efe00c7e8e7755aaabd174915736fe593c7140b3
|
|
| MD5 |
57ee2c3028ab8ad938744444aa49495d
|
|
| BLAKE2b-256 |
5a7ea1ee0ff512194b94b39a876e54538377df01d023342901eee01955560301
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp313-cp313-win_amd64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp313-cp313-win_amd64.whl -
Subject digest:
8fbe5489d1b5173d5d7945a2efe00c7e8e7755aaabd174915736fe593c7140b3 - Sigstore transparency entry: 1116813768
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: roksta-0.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 5.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd011623cfe183f6dfb6cb7f3bea63f49aecd546743ebb16efbd14e093aad14a
|
|
| MD5 |
9440c00cf82d95efde656d7b713552f2
|
|
| BLAKE2b-256 |
4aa5b0f634db8377f859d53340ab2f907179cdbf565f86c37dfbe9a4ba869f82
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
fd011623cfe183f6dfb6cb7f3bea63f49aecd546743ebb16efbd14e093aad14a - Sigstore transparency entry: 1116813761
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: roksta-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcaf44637d71159c8680754ca0c3c3f7d5778e3f8ad945a157afe430c158b034
|
|
| MD5 |
c1e591b41be55213c9b572bc8997c5bf
|
|
| BLAKE2b-256 |
ce03126042919b28fe6be31a816ba5a3124be355f1c3fc3364f32bd7c17140dc
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
bcaf44637d71159c8680754ca0c3c3f7d5778e3f8ad945a157afe430c158b034 - Sigstore transparency entry: 1116813845
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: roksta-0.5.2-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 8.8 MB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1c0fc47df13b2edef940680a7681a8df08386db519991da218d41ef814e69e7
|
|
| MD5 |
0d67ca07c63d04c2ceb9c77c15624e0d
|
|
| BLAKE2b-256 |
90084029bb0c717d1b9c52fcb552d8d3a0f96908ecb0230dfb9d4d6a513d096e
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp313-cp313-macosx_10_13_universal2.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp313-cp313-macosx_10_13_universal2.whl -
Subject digest:
b1c0fc47df13b2edef940680a7681a8df08386db519991da218d41ef814e69e7 - Sigstore transparency entry: 1116813875
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: roksta-0.5.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d42204950e62b44c317592f3dbb6e19414765937d3b13f450a1b853b6f45fafa
|
|
| MD5 |
17de1425f8f9693d98cdd797931223ab
|
|
| BLAKE2b-256 |
eead8f25c9b71e3d291002e7d422456efbc5d590dd2c220cb9996c0af4e9e091
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp312-cp312-win_amd64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp312-cp312-win_amd64.whl -
Subject digest:
d42204950e62b44c317592f3dbb6e19414765937d3b13f450a1b853b6f45fafa - Sigstore transparency entry: 1116813828
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: roksta-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aac2b9e8e9b3480e1be66856f2344f07a5b4a42b9cae308ab38ffecff06bdb65
|
|
| MD5 |
2cac71c7fc669a626067137f128069bd
|
|
| BLAKE2b-256 |
a8905cb001dae11b8f8ba7a5bd693f9d42d9908c0c78037d80ffd3dd18d2c3ce
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
aac2b9e8e9b3480e1be66856f2344f07a5b4a42b9cae308ab38ffecff06bdb65 - Sigstore transparency entry: 1116813837
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: roksta-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e70d18ba94b5d636b62a9e1c1031617377a00e8655db818157d37b551c2f3cac
|
|
| MD5 |
33d6b251f3e158ffba9d6777576db5a8
|
|
| BLAKE2b-256 |
7b9dc4c52e1fd34ee2df56d1964a28d6a3f72e7e187caf37f042206937d483be
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
e70d18ba94b5d636b62a9e1c1031617377a00e8655db818157d37b551c2f3cac - Sigstore transparency entry: 1116813780
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp312-cp312-macosx_10_13_universal2.whl.
File metadata
- Download URL: roksta-0.5.2-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 8.8 MB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe83bcaf5ab2b2b3aab3a7f299c667c5c97b388c67249869d82eb33316c8b704
|
|
| MD5 |
ab8b720d527f0641af7d386137384aaf
|
|
| BLAKE2b-256 |
c447e810eeec5118255198110f5f7cd072accaab464161886a48678b4d9f968f
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp312-cp312-macosx_10_13_universal2.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp312-cp312-macosx_10_13_universal2.whl -
Subject digest:
fe83bcaf5ab2b2b3aab3a7f299c667c5c97b388c67249869d82eb33316c8b704 - Sigstore transparency entry: 1116813819
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: roksta-0.5.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1748d81345891c5de860cb301aac5e483fa4bab23385639c82b837142a88898
|
|
| MD5 |
8ca72dcefef79df9fee0087f37a05d20
|
|
| BLAKE2b-256 |
a2dfebad1b3e8b255b545f60c3a89ad2956506dafc36031964d860f013c78da8
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp311-cp311-win_amd64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp311-cp311-win_amd64.whl -
Subject digest:
a1748d81345891c5de860cb301aac5e483fa4bab23385639c82b837142a88898 - Sigstore transparency entry: 1116813864
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: roksta-0.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 5.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
008ed1fcee376ade027bca6d27453a5e7946b81d6ad874a5704bc31317ae1d00
|
|
| MD5 |
d0171224063a19dc70dfa06bc1ae3e18
|
|
| BLAKE2b-256 |
e39b7ad17beb9e7770c0c285ec5a073e356cedf13f70fda888c22bca8857cb6b
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
008ed1fcee376ade027bca6d27453a5e7946b81d6ad874a5704bc31317ae1d00 - Sigstore transparency entry: 1116813823
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: roksta-0.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
133253518022086ea09678358fdc29734eeb9d91cd483189daf16e2de3e501ee
|
|
| MD5 |
79f7202540633e0e88417741eaa83c93
|
|
| BLAKE2b-256 |
8d616b805a8651f9abcefa019aca45de6116b5151336987b9cd992ff95fb243e
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
133253518022086ea09678358fdc29734eeb9d91cd483189daf16e2de3e501ee - Sigstore transparency entry: 1116813752
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file roksta-0.5.2-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: roksta-0.5.2-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 8.8 MB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa7bbab9a9cd9f8a9efa9a91a800b180a9616c4238a98fca702ee33c5c0e6232
|
|
| MD5 |
21aa267c8791984f4e55766dc781e464
|
|
| BLAKE2b-256 |
7dd7019ff6aa3022e60fdaaa83ffc40f3f1ee3a8684a7beb9f69539dd235f45a
|
Provenance
The following attestation bundles were made for roksta-0.5.2-cp311-cp311-macosx_10_9_universal2.whl:
Publisher:
build_and_publish.yml on pn-206/roksta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roksta-0.5.2-cp311-cp311-macosx_10_9_universal2.whl -
Subject digest:
fa7bbab9a9cd9f8a9efa9a91a800b180a9616c4238a98fca702ee33c5c0e6232 - Sigstore transparency entry: 1116813811
- Sigstore integration time:
-
Permalink:
pn-206/roksta@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pn-206
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_publish.yml@7bf6d1c944d42e5a1e514b125126748f5243daf4 -
Trigger Event:
push
-
Statement type: