<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Trishula Software</title>
    <description>The latest articles on Forem by Trishula Software (@trishula_software_8337734).</description>
    <link>https://forem.com/trishula_software_8337734</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3715386%2Fe2f1c5b1-495f-465a-91dd-c0d87f8d94f4.png</url>
      <title>Forem: Trishula Software</title>
      <link>https://forem.com/trishula_software_8337734</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/trishula_software_8337734"/>
    <language>en</language>
    <item>
      <title>StreetPack: A local-first docked launcher for safer CLI workflows</title>
      <dc:creator>Trishula Software</dc:creator>
      <pubDate>Sat, 07 Feb 2026 01:19:42 +0000</pubDate>
      <link>https://forem.com/trishula_software_8337734/streetpack-a-local-first-docked-launcher-for-safer-cli-workflows-4ohe</link>
      <guid>https://forem.com/trishula_software_8337734/streetpack-a-local-first-docked-launcher-for-safer-cli-workflows-4ohe</guid>
      <description>&lt;p&gt;I just released StreetPack, a small open-source project built around a simple idea:&lt;br&gt;
make powerful CLI tools safer to use without hiding what they do.&lt;/p&gt;

&lt;p&gt;StreetPack is a lightweight, local-only docked launcher for command-line utilities. It doesn’t replace Bash or scripts — it wraps them with just enough structure to reduce foot-guns when you’re tired, moving fast, or working in sensitive directories.&lt;/p&gt;

&lt;p&gt;Key characteristics:&lt;/p&gt;

&lt;p&gt;Runs local CLI tools only&lt;/p&gt;

&lt;p&gt;No cloud services, no background agents, no telemetry&lt;/p&gt;

&lt;p&gt;Explicit targets and arguments&lt;/p&gt;

&lt;p&gt;Optional receipts and outputs written to predictable paths&lt;/p&gt;

&lt;p&gt;Designed to be inspectable, boring, and easy to reason about&lt;/p&gt;

&lt;p&gt;The motivation came from years of copy-pasting commands, double-checking flags, and still feeling uneasy before hitting Enter. StreetPack aims to slow that moment down just enough to make intent and impact clear.&lt;/p&gt;

&lt;p&gt;It’s Linux-focused, MIT licensed, and intentionally minimal. The goal isn’t to add features — it’s to reduce accidental mistakes while keeping full operator control.&lt;/p&gt;

&lt;p&gt;Source and release:&lt;br&gt;
&lt;a href="https://github.com/TrishulaSoftware/StreetPack" rel="noopener noreferrer"&gt;https://github.com/TrishulaSoftware/StreetPack&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feedback from people who live in terminals and scripts all day is very welcome.&lt;/p&gt;

</description>
      <category>bash</category>
      <category>linux</category>
      <category>cli</category>
    </item>
    <item>
      <title>I built BashISE (bise2): an ISE-style GUI workflow for Bash on Linux (atomic writes + backups + receipts)</title>
      <dc:creator>Trishula Software</dc:creator>
      <pubDate>Fri, 16 Jan 2026 17:53:43 +0000</pubDate>
      <link>https://forem.com/trishula_software_8337734/i-built-bashise-bise2-an-ise-style-gui-workflow-for-bash-on-linux-atomic-writes-backups--3anp</link>
      <guid>https://forem.com/trishula_software_8337734/i-built-bashise-bise2-an-ise-style-gui-workflow-for-bash-on-linux-atomic-writes-backups--3anp</guid>
      <description>&lt;p&gt;I shipped BashISE (bise2) — a local-first GUI editor + Bash runner for Linux that’s built around one obsession:&lt;/p&gt;

&lt;p&gt;Don’t lose work. Ever.&lt;/p&gt;

&lt;p&gt;What it does&lt;/p&gt;

&lt;p&gt;BashISE is a lightweight “ISE-style” workflow for Bash on Linux:&lt;/p&gt;

&lt;p&gt;open/edit scripts&lt;/p&gt;

&lt;p&gt;run with args&lt;/p&gt;

&lt;p&gt;keep outputs visible&lt;/p&gt;

&lt;p&gt;keep your work safe even when you’re moving fast&lt;/p&gt;

&lt;p&gt;The doctrine (the whole point)&lt;/p&gt;

&lt;p&gt;Every design choice follows these rules:&lt;/p&gt;

&lt;p&gt;Atomic writes&lt;br&gt;
Changes are written safely (temp → replace). No partial files.&lt;/p&gt;

&lt;p&gt;Backup on every write&lt;br&gt;
If you save, a backup is created. Always.&lt;/p&gt;

&lt;p&gt;JSON receipts&lt;br&gt;
Each action can emit a receipt so you can prove what happened: what/where/when.&lt;/p&gt;

&lt;p&gt;Offline-first&lt;br&gt;
No cloud dependency. This is a local tool for local work.&lt;/p&gt;

&lt;p&gt;Quick proof / selftest&lt;/p&gt;

&lt;p&gt;Run this and you’ll get a clean “OK” plus backup + receipt paths:&lt;/p&gt;

&lt;p&gt;BISE2_ARMORY_SELFTEST=1 bise2&lt;/p&gt;

&lt;p&gt;Repo&lt;br&gt;
Feedback I’d love&lt;/p&gt;

&lt;p&gt;UX: what feels clunky in the editor/run flow?&lt;/p&gt;

&lt;p&gt;Packaging: what install method do you expect for a Linux GUI tool like this?&lt;/p&gt;

&lt;p&gt;Repo + install instructions:&lt;br&gt;
&lt;a href="https://github.com/TrishulaSoftware/BashISE" rel="noopener noreferrer"&gt;https://github.com/TrishulaSoftware/BashISE&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Quick proof / selftest:&lt;br&gt;
BISE2_ARMORY_SELFTEST=1 bise2&lt;/p&gt;

&lt;p&gt;I’m mainly looking for feedback on UX + packaging expectations for CLI/GUI tools in this space.&lt;/p&gt;

&lt;p&gt;Built by Trishula Software.&lt;br&gt;
Support links are in the repo (Sponsors / Ko-fi / BuyMeACoffee / OpenCollective). Patreon exists but isn’t monetized yet.&lt;/p&gt;

</description>
      <category>bash</category>
      <category>linux</category>
      <category>showdev</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
