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.2-cp314-cp314t-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.14tWindows x86-64

roksta-0.5.2-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.2-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.2-cp314-cp314t-macosx_10_15_universal2.whl (9.6 MB view details)

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

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

Uploaded CPython 3.14Windows x86-64

roksta-0.5.2-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.2-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.2-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.2-cp313-cp313-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows x86-64

roksta-0.5.2-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.2-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.2-cp313-cp313-macosx_10_13_universal2.whl (8.8 MB view details)

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

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

Uploaded CPython 3.12Windows x86-64

roksta-0.5.2-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.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

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

roksta-0.5.2-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.2-cp311-cp311-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Hashes for roksta-0.5.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 26d1dbff42578f5369919624fd4db68bdeab6c9d0bc345be0a4ca2a218062ec4
MD5 c82cda50d54420368ca975095540ce68
BLAKE2b-256 19ce84bd1d0a49e8184fae4bae1fd3e0bf2f525daa148e3fbcb9ddfa3718fc8c

See more details on using hashes here.

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

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.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 560d11fede63a7001b4205a3d7e3bfbea20e28c47298950904590b08b6cdb5c5
MD5 c784e62e8e60cf32cdd9f0e22f07a67a
BLAKE2b-256 cdf612a7ba37f9ee711c6d823ca43fe95cdcaa74df6793ea892603b9a338129b

See more details on using hashes here.

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

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.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef1864b0f7b412891edf1b9e63ed6422341341738d167ac0521cc5e2ba4af5d9
MD5 cb840080ff4d3c953645aab99ec7d0f9
BLAKE2b-256 61d2877edd6199d439c3b032b9a607a84ef15b14edbc0c248146a3f6c2f42476

See more details on using hashes here.

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

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.2-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.5.2-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 16abdd09e2a2fb1ad3bd937bc29db302d6f5a8d598bd4fd7ae33b5dee0db9987
MD5 ea76ad5c29c6958e739c0066af82f418
BLAKE2b-256 5e9bb19625c874f652aa5306e1f428a52659d8a43bc05c8cbb6cca0983c9ccb1

See more details on using hashes here.

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

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

Hashes for roksta-0.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c13bad3d7fd4588e3c7ec8296f6d387b2ca5068509ad4a971d24616fbbe665c9
MD5 ec8eb1d957f77012da23acdf106f843c
BLAKE2b-256 22ea4e33dc62d7b0930f470da8509ceefd2ba8e2593a789bb919f7b9be80ae6a

See more details on using hashes here.

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

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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f79893930b68a769f81eb2e2b2f6ba2a5551b4989dcd1d9f792efc9a8dd5e034
MD5 2f7ab16604a0bacb3284cf06ed9f3b36
BLAKE2b-256 0b4d869d8942e8efbd43dce19ab5bb3e3444f642a8371f25da39f591e8043d0a

See more details on using hashes here.

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

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.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0075ae266add8293223c392405e3e406028e0be9f5cfc93212c9348b93a4b6d9
MD5 f8db05b91654d5a930209bfde8dd5149
BLAKE2b-256 54f383dfbb97bdd3de85adca4a8fcdc68dddf5266030372f642abeaea37e8cb7

See more details on using hashes here.

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

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.2-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.5.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e609fe6d536cdd192fc04d8aecc2780d19e3d2d80712b06cfd98f59f1a099480
MD5 ef9a6ca8eebd6455030e8ac9c4348ab2
BLAKE2b-256 281cc02e0768692ca1d4f7324b78a677a8ec8857099e56181ad005672c795ab1

See more details on using hashes here.

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

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

Hashes for roksta-0.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8fbe5489d1b5173d5d7945a2efe00c7e8e7755aaabd174915736fe593c7140b3
MD5 57ee2c3028ab8ad938744444aa49495d
BLAKE2b-256 5a7ea1ee0ff512194b94b39a876e54538377df01d023342901eee01955560301

See more details on using hashes here.

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

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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd011623cfe183f6dfb6cb7f3bea63f49aecd546743ebb16efbd14e093aad14a
MD5 9440c00cf82d95efde656d7b713552f2
BLAKE2b-256 4aa5b0f634db8377f859d53340ab2f907179cdbf565f86c37dfbe9a4ba869f82

See more details on using hashes here.

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

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.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bcaf44637d71159c8680754ca0c3c3f7d5778e3f8ad945a157afe430c158b034
MD5 c1e591b41be55213c9b572bc8997c5bf
BLAKE2b-256 ce03126042919b28fe6be31a816ba5a3124be355f1c3fc3364f32bd7c17140dc

See more details on using hashes here.

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

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.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.5.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b1c0fc47df13b2edef940680a7681a8df08386db519991da218d41ef814e69e7
MD5 0d67ca07c63d04c2ceb9c77c15624e0d
BLAKE2b-256 90084029bb0c717d1b9c52fcb552d8d3a0f96908ecb0230dfb9d4d6a513d096e

See more details on using hashes here.

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

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

Hashes for roksta-0.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d42204950e62b44c317592f3dbb6e19414765937d3b13f450a1b853b6f45fafa
MD5 17de1425f8f9693d98cdd797931223ab
BLAKE2b-256 eead8f25c9b71e3d291002e7d422456efbc5d590dd2c220cb9996c0af4e9e091

See more details on using hashes here.

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

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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aac2b9e8e9b3480e1be66856f2344f07a5b4a42b9cae308ab38ffecff06bdb65
MD5 2cac71c7fc669a626067137f128069bd
BLAKE2b-256 a8905cb001dae11b8f8ba7a5bd693f9d42d9908c0c78037d80ffd3dd18d2c3ce

See more details on using hashes here.

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

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.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e70d18ba94b5d636b62a9e1c1031617377a00e8655db818157d37b551c2f3cac
MD5 33d6b251f3e158ffba9d6777576db5a8
BLAKE2b-256 7b9dc4c52e1fd34ee2df56d1964a28d6a3f72e7e187caf37f042206937d483be

See more details on using hashes here.

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

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.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.5.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 fe83bcaf5ab2b2b3aab3a7f299c667c5c97b388c67249869d82eb33316c8b704
MD5 ab8b720d527f0641af7d386137384aaf
BLAKE2b-256 c447e810eeec5118255198110f5f7cd072accaab464161886a48678b4d9f968f

See more details on using hashes here.

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

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

Hashes for roksta-0.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a1748d81345891c5de860cb301aac5e483fa4bab23385639c82b837142a88898
MD5 8ca72dcefef79df9fee0087f37a05d20
BLAKE2b-256 a2dfebad1b3e8b255b545f60c3a89ad2956506dafc36031964d860f013c78da8

See more details on using hashes here.

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

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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 008ed1fcee376ade027bca6d27453a5e7946b81d6ad874a5704bc31317ae1d00
MD5 d0171224063a19dc70dfa06bc1ae3e18
BLAKE2b-256 e39b7ad17beb9e7770c0c285ec5a073e356cedf13f70fda888c22bca8857cb6b

See more details on using hashes here.

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

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.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for roksta-0.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 133253518022086ea09678358fdc29734eeb9d91cd483189daf16e2de3e501ee
MD5 79f7202540633e0e88417741eaa83c93
BLAKE2b-256 8d616b805a8651f9abcefa019aca45de6116b5151336987b9cd992ff95fb243e

See more details on using hashes here.

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

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.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for roksta-0.5.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fa7bbab9a9cd9f8a9efa9a91a800b180a9616c4238a98fca702ee33c5c0e6232
MD5 21aa267c8791984f4e55766dc781e464
BLAKE2b-256 7dd7019ff6aa3022e60fdaaa83ffc40f3f1ee3a8684a7beb9f69539dd235f45a

See more details on using hashes here.

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

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