Skip to main content

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

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 #thinking directives 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:

    • OpenAI
    • Gemini
    • Anthropic
    • xAI

    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-commit directive.

  • #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 #commit directive.

  • #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 on command. Takes precedence over #test if 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 #build if 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.

  1. Submit a goal using the /goal command. 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.

  2. 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.

  3. 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.

  1. Start a chat session using the /chat command to discuss and analyse the bug for example.

  2. 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.

  3. Roksta will include the #no-clarify directive 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 /exit or Ctrl+Q to 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 continue argument 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 continue argument 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 /goal command. To exit the chat session, use the /end command (/quit and /exit will also work) or press Ctrl+R.

  • Commands The chat interface supports the following slash commands:

    • /thinking <level>: Adjusts the AI's computational effort. Accepted levels:
      • default
      • fast
      • more
      • max
    • /save: This will save the chat transcript.
    • /end, /exit or /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-charge command. 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. If charge_amount and trigger_balance are 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_balance must also be provided. Defaults to $10.00 if enabling with on and 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_amount must also be provided. Defaults to $2.00 if enabling with on and no custom values are set.
  • Example: /auto-charge on 15 3

  • Notes:

    • If you wish to specify charge_amount and trigger_balance, both must be provided.

/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>/.rokstarc as the top-level key auto_commit.

  • Usage: /auto-commit <on|off|status>

  • Example: /auto-commit on

/linting

  • Description: Manage project-specific linting configuration stored under the top-level linting key in your project config file. The /linting command 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 of linting.enabled, linting.check and linting.fix.
    • on: Enable linting by setting linting.enabled = true and persisting the project config.
    • off: Disable linting by setting linting.enabled = false and persisting the project config.
    • set "check" ["fix"]: Save a check command and an optional fix command, and set linting.enabled = true. The check parameter is required and must be non-empty. Example: /linting set "flake8 ." "black .".
    • clear: Remove or clear the linting configuration (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, /linting will refuse to operate and will prompt you to fix .rokstarc manually.
  • 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 testing key in your project config file. The /testing command 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 of testing.enabled and testing.command.
    • on: Enable testing by setting testing.enabled = true and persisting the project config.
    • off: Disable testing by setting testing.enabled = false and persisting the project config.
    • set "command": Save the testing command and set testing.enabled = true. The command parameter is required and must be non-empty. Example: /testing set "pytest".
    • clear: Remove or clear the testing configuration (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, /testing will refuse to operate and will prompt you to fix .rokstarc manually.
  • Examples:

    /testing status
    /testing on
    /testing off
    /testing set "jest"
    /testing clear
    
  • Example workflow:

    1. Configure the project test command:
      /testing set "pytest"
      
    2. Use #test in your goal to trigger the configured test command for this run. Example goal:
      Run unit tests for the payments module and fix failures. #test
      

/building

  • Description: Manage project-specific build configuration stored under the top-level building key in your project config file. The /building command 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 of building.enabled and building.command.
    • on: Enable building by setting building.enabled = true and persisting the project config.
    • off: Disable building by setting building.enabled = false and persisting the project config.
    • set "command": Save the build command and set building.enabled = true. The command parameter is required and must be non-empty. Example: /building set "npm run build".
    • clear: Remove or clear the building configuration (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, /building will refuse to operate and will prompt you to fix .rokstarc manually.
  • 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.log immediately 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-auto directive 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 more or --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 /init command 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

roksta-0.5.7-cp314-cp314t-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.14tWindows x86-64

roksta-0.5.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

roksta-0.5.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

roksta-0.5.7-cp314-cp314t-macosx_10_15_universal2.whl (9.7 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

roksta-0.5.7-cp314-cp314-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.14Windows x86-64

roksta-0.5.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

roksta-0.5.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

roksta-0.5.7-cp314-cp314-macosx_10_15_universal2.whl (8.9 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

roksta-0.5.7-cp313-cp313-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows x86-64

roksta-0.5.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

roksta-0.5.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

roksta-0.5.7-cp313-cp313-macosx_10_13_universal2.whl (8.9 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

roksta-0.5.7-cp312-cp312-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows x86-64

roksta-0.5.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

roksta-0.5.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

roksta-0.5.7-cp312-cp312-macosx_10_13_universal2.whl (8.8 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

roksta-0.5.7-cp311-cp311-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.11Windows x86-64

roksta-0.5.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

roksta-0.5.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

roksta-0.5.7-cp311-cp311-macosx_10_9_universal2.whl (8.8 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file roksta-0.5.7-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: roksta-0.5.7-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.12

File hashes

Hashes for roksta-0.5.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cc5d4a63de291187cc8e15fbc382b92928fe0e48e86a4e6a7800af9093e328fc
MD5 8e159270ea9797c232e3d995ef25b9f2
BLAKE2b-256 3529963f01554499c224f2c2ad1010b80999d09aebd1f0360b2662efe36d963c

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp314-cp314t-win_amd64.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 570d7c9a6513d0e860dcb9a6826a7a318c27d8180f41681b1afca476060fad08
MD5 4fd4d89b91ca919dde9e76ab7097a0cd
BLAKE2b-256 6c6243e44062ed6ad77cfeca2d6453557a6219b61590f1bdb126f466f116cf6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d50727bb12497900d46cdf5df37af97077861ddf7969a20ba344af46ed4c4036
MD5 568c743727ac62cf855fd8532e712a75
BLAKE2b-256 286d4f4dbab843dfff566ec19e03d0e9c1354bff7137cf370610967c37998a94

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5ce5f3cb6a8a4f56a943f3221551ad8aac8487863f096135e1805c20e54b1561
MD5 03213c35717d944eb49dfd4ef2258dea
BLAKE2b-256 bdf46ffccd6b17440015bd8a6d041893e82083ba0ef09723ce20a855cfda826a

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: roksta-0.5.7-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.12

File hashes

Hashes for roksta-0.5.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 afa5265140a945cf9ce82d8d0cbfbd4bf4cbdbd78de36f60265a23fc04379528
MD5 0e6f6afe2fbdeace0829e7f2fcbe4712
BLAKE2b-256 8e0cd3661fc8d4b0c73602d4b588fa7a958ef11d6198d336110820160c8fd8d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp314-cp314-win_amd64.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f8d89758d0d4c1d1f29153d911d7efffb7c794ccac0fcda31408ec08744be1a
MD5 4c69c1c18efb9c415196e2c8406e12c0
BLAKE2b-256 6a72d48ade9a2c81d405c7620304a1109ec61d8d0b52162cece66f187b37c0ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17c107d29b9625ad80a0096ebea4594d7e4eb15f96c68af8152404b8f0360d15
MD5 69bea4fae493e8987e5954a0fd127332
BLAKE2b-256 8a441f3bad7557fe70c0beaafda2ca961d74008e99f2a544124dd70089552c07

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 fb63e6edc4725bc1d11e3d12d6a945d34c8473c25880d50d41b6aeb5b524c978
MD5 6b92d558f1b98187b8418041c45b8b64
BLAKE2b-256 9503527042c99f718c9c54311fd47ef960f41808f7cd3fc4c72cb4582d21991c

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: roksta-0.5.7-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.12

File hashes

Hashes for roksta-0.5.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9f6225082b2923a8d778aa2ce0eeb52ca179e6657d46caa438f76e6738b2cccd
MD5 6c0766a837d855e8784521db8858941f
BLAKE2b-256 8f992d894d67b0cbd07cb28e1548296f341d5fec555fe9f836062bd6ff71cd05

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp313-cp313-win_amd64.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 893051ef86f7af00e578752ff804bde881bfabbfa6ef932ed57dd36c4ae4444d
MD5 a4e3d9159ffa9aa31eed932a7996a7c3
BLAKE2b-256 693f6f10b6b1447ca7ca6ac1240b5865804cd24c9b5fb2c0dee865955e4fa97c

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80dc48e6f4c6b159f18a44321bb9d27ec51af91d21d4260387334dccaa2a832f
MD5 1421c576bf79e3efcedec189e86828e0
BLAKE2b-256 16856da2eed0ea4fb784a414e4bb264237d4ef31bd7596db392f40f2df8e39ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2b18442520c06e859d3f158ffbe3bac5d997589660d078fb864a63839ace3806
MD5 f908662790191df6a77e3df13a1ab7cb
BLAKE2b-256 e87fe1b397b5113a3a65998566cbd4a2e7eb95105ede6852ce77e17ed362097c

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: roksta-0.5.7-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.12

File hashes

Hashes for roksta-0.5.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7dbeca1bd82cd74acb2ec35af2ac0d21d469f5d2b6c219c354793eacba10e207
MD5 51c94985b476ebe6004ac5ebcbdaf9e0
BLAKE2b-256 c7cb4009d0739d61b09267b3adfc1fee75895c4087ab23060b641e7faf0405bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp312-cp312-win_amd64.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82322983dfb70d5d95f991fcd0d2c589d9f49d7f320544c868dbd395436d235b
MD5 4414dc124ae108daf58402f1556fd7c6
BLAKE2b-256 9d63d8e2654316a7bb7637c051ecac7594f9253c723608160fc0f7515b152945

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b612c68975d9599d94e5fa616b8cb1d191a1ebe7f9692d3c5538803f4c7eefe2
MD5 54e7f7e6dacfc61e48b6d1504c6fd541
BLAKE2b-256 0cd1fd72f68a09ef0343da6ea4bbe768b616e688a3a6390c3f7b99fa8b1c3f9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 742dd3ae7eb79b13f9e342a480648ce2096de06f1da763299fcec5fdb7091e87
MD5 f012066f2163fa2b9b6e1c7077968a68
BLAKE2b-256 fc5f5fd8d9fb7943596d8ab4af8afcd49c420c50d81bcfb9cc8e3dadda4fec56

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: roksta-0.5.7-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.12

File hashes

Hashes for roksta-0.5.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1b9dd7ef0bbdd9c6accd78d65e500d6a592e4944e779e1f65b4ce5160cc606c2
MD5 01304fe83ebba0cc6752dfd901346e91
BLAKE2b-256 c08dc1ab6d930010eebc366651e29ef79644416842f0cb37a3051a6381b3d8f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp311-cp311-win_amd64.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 365c07b5b72824af4ef0ed992d0579e6c144c181bf6a16a775b9073d1a452413
MD5 561f3b2ad737fd05bfef6afa10af0e2e
BLAKE2b-256 a52a540c9a46986b821b1a890bdbda144c60c6ade19a0bc86acbf5819b36163b

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b19ea4f6147fcdf0e054ee5952e9960b05860df4ba1a1e76cbee3807071355d
MD5 6f3703399f370a679c0be332d5cf5e82
BLAKE2b-256 c66fbbb2e27d3bdf8709f813059bf8298d93af99921a7ea6e4db2ca497ee048b

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file roksta-0.5.7-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.5.7-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fce793bf6af09accc20f8f21a2ff8f30cfc4f548e35c6d53035e7ee448afa60e
MD5 0b4441609c3c26f6a9ee04c0716226d6
BLAKE2b-256 4853590cc4c980e1a8a4ef0a1568e0960870cfbc2087313e7153bd34bc29b3e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.7-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: build_and_publish.yml on pn-206/roksta

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page