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

Uploaded CPython 3.14tWindows x86-64

roksta-0.5.3-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.3-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.3-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.3-cp314-cp314-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.13Windows x86-64

roksta-0.5.3-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.3-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.3-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.3-cp312-cp312-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.11Windows x86-64

roksta-0.5.3-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.3-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.3-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.3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: roksta-0.5.3-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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e1b93965c7091f39f74a03bfce6cb72e51a81f1c7e0ae56adafffc450ce522c9
MD5 75c2cf67486c2558d639bc67f2f38908
BLAKE2b-256 85d95b1e8a4b1867319ffb53378fcd999e352313c1a644143a99d124a1b18502

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.3-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.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fbe2d7dd6dc8f82ccf4c06aa3d36fe7762d5e9c0d727aa86762320175e3f048
MD5 0b09663ae2f126223cc48f5133aae9fa
BLAKE2b-256 b185d5a6d028e6b2d3480fd90db509a9beea7d64446b726e65a5c31ac105cf66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for roksta-0.5.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4124d179e74920e62bd499c4d44de6470b1b7e4ce3ce68565191e3d708251533
MD5 0907e84c46414662020ae025a9b60a25
BLAKE2b-256 9c1ea1f4ea4f83614250932cbf52f1709ef7ec7748dee2033f06f436315580a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for roksta-0.5.3-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 37a943776bd03fe09a53c6da7cfe8a2e60a93710c7c85aa854803e16eb8f6597
MD5 392be9228a40a619eb65b07c0a929666
BLAKE2b-256 bc8b915b5a36c35dd77841ebc5878c3ecc63cde3f6c3c2c23702e194d99558ab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: roksta-0.5.3-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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0181f107a8230fdb8d50a1f9ba731291501d1de1a095e04cee73ee2b36c51956
MD5 cd01b09a3fa81f6306ac167717e98490
BLAKE2b-256 3128e8628774bb1f88cdbe2b64fb5b06f108a7aeec7d94265240e23eefc17445

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.3-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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8906580b09c74fa2a5ebf5f2b7866bbc2181909bd773c3d064da5169a1c5825
MD5 21d795fe79547b95827e1471ed4c029d
BLAKE2b-256 69c3b825accce7265de28fbcd3280d4d499d5ab5dbc07b079fbfa36d60ccaa1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for roksta-0.5.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39c9f3c82f42d413c18541f7fbe48b6b6276ebd4a98aa5499fabda314c0ec211
MD5 8f4cc4884d5f47dd00ec280162978a14
BLAKE2b-256 883429759ebab0eeb4725e8dc11fb394617204b1c12ecd23a095574bef6d0d4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for roksta-0.5.3-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 42ac850bb45dec1def4323e68fa1f2c8d109d5233655dabd3134ab3d1894ef4d
MD5 c5a4aae31f8c7761ab718162d07469a5
BLAKE2b-256 710ebca0582a5d9f71713e4dbb93e0d3359db4450316bce43ad08aa9aeef5f90

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: roksta-0.5.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4b890b35078286dabe7bc77190824bce75f69d13a52c0904a835223eb659e90c
MD5 3a539293c037bd32fb30f27377ecbac4
BLAKE2b-256 458a16b3918b91706002e870a41846fd9c0754376ea5a91348f9ce4646c235df

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.3-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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e81eabba59d4365da738f08d7533110523e0c54c824a70551b43cba9682720c
MD5 4a6246e05b47bf9eace4678ab6dee6a1
BLAKE2b-256 28170d8b36083d8e696aadfd6b9f714d83c7f01f9e0c13182545a7052d43c121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for roksta-0.5.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d48bdbc500ae7e95ffcf98fbc5877b403efaaf8fc23273403113f33b4d128e99
MD5 7675d4f468fb45e9bb6c0f53dc059747
BLAKE2b-256 a8dee08f5f04e168940c695d6a23805675ef4b67abacd0493745413e2d2c378e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for roksta-0.5.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8e4f9cb103fa3f431346927b4c16dc326c56e1ce51d9898e2e2b527ea1f039aa
MD5 46c7eecc86f5bfb5eebae79d4b32083f
BLAKE2b-256 4e2d825b4a4b6a495b333a8192427fdc54dd7d84c6090824cbe6bb22ab9b04f6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: roksta-0.5.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 67c11f9ef1b4d87865e076f0d874af193988adbe8696bcb1698d65833edbb889
MD5 4aaa3ca743a77df79fc7d8dc1bd7a627
BLAKE2b-256 42774155089c713f1d258ad33ecdd01b7711e5495e9a799ba5ae1f8438c821e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.3-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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b44fbec108eef29f23fcd6a0ce6695c7dfecded88c9f8353bebdbdfef320821c
MD5 cbe688c41f2b4e33f5d0843f0e9d6c8f
BLAKE2b-256 0adb07eeb7314474de798965792a6b5accf6c261a7b1929d27f6dd8413d9ec17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for roksta-0.5.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0eaa6a4dafb2bdb894b6f79a73223f6c254e027442d2ed16039ef932a0450ff8
MD5 c85043c5aa56801bc8b86e934b42140b
BLAKE2b-256 f9e99e9b9d91cc6fde6d0617169d8328430ced1dcf2432d6a7cccdc0a0e73ed5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for roksta-0.5.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f09b33407eaa6331e416f30fb995cbd9b9feaeb9ea19523da28e0b398dad8760
MD5 d687a95ee999a9028dcbad44ab60da39
BLAKE2b-256 c8c024b010fa4c116f569409218ba63bc8598032b6ffddfc4de1e311cff6efe9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: roksta-0.5.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e505661aa509d2d99bb46636a4ca673cbc9d696fd296bf2c92de320e55c1ec74
MD5 30d38ec6e1153c287432a9e9bdb3f6e7
BLAKE2b-256 e86c8d78c401fec95e1a2f991901e593e3e9faa9f832f56cbe701452bdc95846

See more details on using hashes here.

Provenance

The following attestation bundles were made for roksta-0.5.3-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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6db59ad02237f55510dbe0af808ee09fccc2434fddb4824fb2c1c291dc96d292
MD5 6ccdcff490b8ba88bc23c8d48711b0e5
BLAKE2b-256 a87a6cfe726f875519ae09581feeb2650eb63301de450e932977d6bf371cac31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for roksta-0.5.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbddb6110a42188974129cfcf6c85455996d30c5e76033b272dd1bbcbe64cc43
MD5 3451c3f71ebae2ee451d5357eb443cd9
BLAKE2b-256 51d0a5ab8a7a1f7466e93297f353b9d3d1fc8ef206341fe08bc4b7b13346c0f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for roksta-0.5.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a5c40b8ac63ce801d00d0eac75acd85e9fe1765ef93c9c83e26f96c60944827c
MD5 efb7f67c4c6d0d82f8731d6f31646aae
BLAKE2b-256 0febe22b53031f3f62f8d6b4f9bba3612498ed56d110ba05ba5ba8335be3cdca

See more details on using hashes here.

Provenance

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