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.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.5 MB view details)

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

roksta-0.6.0-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.6.0-cp314-cp314-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.14Windows x86-64

roksta-0.6.0-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.6.0-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.6.0-cp314-cp314-macosx_10_15_universal2.whl (9.0 MB view details)

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

roksta-0.6.0-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows x86-64

roksta-0.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

roksta-0.6.0-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.6.0-cp313-cp313-macosx_10_13_universal2.whl (8.9 MB view details)

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

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

Uploaded CPython 3.12Windows x86-64

roksta-0.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.4 MB view details)

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

roksta-0.6.0-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.6.0-cp312-cp312-macosx_10_13_universal2.whl (8.9 MB view details)

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

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

Uploaded CPython 3.11Windows x86-64

roksta-0.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.5 MB view details)

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

roksta-0.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

roksta-0.6.0-cp311-cp311-macosx_10_9_universal2.whl (8.9 MB view details)

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

File details

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

File metadata

File hashes

Hashes for roksta-0.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29b87429f18151302ec74c15e084c2640b20ef3bccf14067058d595c5785d261
MD5 6a12d60af58cb21f0d2b1a3f4551fa55
BLAKE2b-256 a085bef427152370011bdaec5f6cbccac5f202fe46ab1ec0f23acd21a2ace547

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b5f18403d334dcc3acd621426e588b172a781b158fbcd51c14f7a14d068cc89
MD5 dc153bd6bee1a88f92526f283c8f91b8
BLAKE2b-256 e0f4f74d5fcebd3a4b4e7ee626816314731dd921aafd4733279d1f47aa88de08

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: roksta-0.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 82bf142be358619a7c92202c7515ec32849229de481a4c11e8111da49d21a3f1
MD5 e16cbb2c758ddab32581e4a0638f412f
BLAKE2b-256 cddea4f145e3ae4cc5b13d13f33cd0ff6db6aadcf0ad5ba53110bcdb9b1f1a86

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db6c84d6d5c7b44f4686aadc8d000f42e215b8e70ef63eab144265c252a06766
MD5 2dffee7d155c99882366dd5b716593a6
BLAKE2b-256 2fbf07a65010a81ba13f89496b0f54d21b14f726b54b299e99155df84b12e3b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 281b1b90d843e27789a3e362664a044e8174b20d4ad4a956cfc26e69bfaba04e
MD5 a0a97b34d3deeacdc3fba14462f26b51
BLAKE2b-256 acac03ead8a1b92c776c5eaf7a9c9bd79c5792357931790cebf06df1c826000d

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 38fc07a9105f0b7d3365d438813c30f6f486a30bda779f93d3fc68787c8ae145
MD5 22e575b878171721ca57faebd7ff8676
BLAKE2b-256 150896cc31f182656144e3d340fe90c70bd02dbc9f43d9027e4d79f8a75e92a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: roksta-0.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b0d5b3e1caebcf0ab873374bb7eb32a7bfdcd9d6d8ec26a434867194d71197af
MD5 8053b9fc6329d7d817dbf9391ca59e27
BLAKE2b-256 4de63b28b8fe4ac1d1768407b94a5b49a8e4ad02a86ef6e9080c01145d642f75

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f83a81f3c60636d0d5ba7b5bae609df2e7369fa03685147ae759b5642a53c69c
MD5 71ef0242496262a9029791215c91e33d
BLAKE2b-256 58014c427c8fb870e1aed10d7a6514552e78f9b317ddb2efb86c83167c3cc94a

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4a682bdfe0ff94ee020ffdbd9832eadd4936cafa98c42c1a7a7974c513eecea3
MD5 d2257e18b52d19d65ec104eb63f8e569
BLAKE2b-256 b13970fb7f8e7b625504b7077d730a263ff1477ddf7fbf73691afa05d56fc4d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d02e9ae661c67196644ad0a9ad44f69b09ed15911d7766e6af895f67f0ac4534
MD5 d33f6621922b0d5dd484e5f338e058f8
BLAKE2b-256 63b4d34181f743d4b1222917cb7e113ab43121a205931a1503e3aa50d9dba7a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: roksta-0.6.0-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.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 33631e116402c38d55451ab3862ccb4c4d59620e8c22564faf0a98045038b08b
MD5 14330e156109be588930616ca4670afb
BLAKE2b-256 850a58819a4caad41392a82046ccc3b9940f5ab67dcba745057bb587c91ce846

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 267c06c31949c729cb56ce97e1e716dd83768626b6b0dc678afe53c1b0488b02
MD5 bba58371578bc53a7b3ad85af4d7675a
BLAKE2b-256 60e9869583ccb5224d23df1721b38e498726095335268217e9fe45c8c57c9524

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 add6b591971a77da609f8205e517d7f64a78db38723fd9c0760b3cb78b9eef91
MD5 938e1b03f6c8bf94e200e78beefc0d74
BLAKE2b-256 394b776b5cdc515926faa0edbc07542fa81effcd1b66a712ee66c70ca30f53ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e7f43a0cdf574d33dbfee9c5c13f62c25725a36ff51bb09f9c2f7b477ac9a520
MD5 1a0b726cd17fc7a2a2178cd050f4c2b1
BLAKE2b-256 0ed9e4fdf190cc4eb29c7287cbf27804f5f9517b057239df86a78ed522751371

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: roksta-0.6.0-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.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 75e733da8a77414831d9fc4d02671333ed989c558684073a76c54f4ba3fba968
MD5 06003f61e3f6ca841ad3a09dbd057737
BLAKE2b-256 1e12659d116ceab7c135a434b1fd55e220af48dc8575176216079eaccd7d5dde

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d57220ebe93a2c0cdab45f9e3d52950137057286f87643d14288494b6ddb1109
MD5 0ee841a8fb8ed5d2f170ff0b39c94732
BLAKE2b-256 232a746e509882c9ceac14f3440b1ecdca8f00e61ca9e4fe9f801193577dbf99

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66107f7305ba57ed7c09af7a180e81bb213f5e5901273e239e72deb1e5a07e55
MD5 b047915052501f505b40697f2132cf3a
BLAKE2b-256 a792d29f738d4507b784578a200d05dfa50d4e159009d56466efefc603618bf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.6.0-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.6.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.6.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0057470aa60287835562a9d6c7933a67fbf251fd322f15011e4c674fead09e8e
MD5 111e1910639feb89d7e3fb03f07baa82
BLAKE2b-256 1e65aba86470410a0eeea0572115f84dfa4670c9765b4d97a0ca96a0b4d8c701

See more details on using hashes here.

Provenance

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