totopo 3.7.0-rc-2 → 3.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +16 -17
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -127,27 +127,26 @@ profiles:
127
127
  description: "Base image: Node.js, git, and AI CLIs"
128
128
  dockerfile_hook: |
129
129
  # No extras — uses the totopo base image as-is (Node.js + git + AI CLIs).
130
- extended:
131
- description: Base image + Go, Java, Rust, and Bun
132
- dockerfile_hook: |
133
- # Go
134
- RUN apt-get update && apt-get install -y --no-install-recommends golang-go && rm -rf /var/lib/apt/lists/*
135
- # Java (headless JDK — includes javac; needed for Kotlin, Scala, Android tooling)
136
- RUN apt-get update && apt-get install -y --no-install-recommends default-jdk-headless && rm -rf /var/lib/apt/lists/*
137
- # Rust (system-wide install — devuser can use cargo and rustc)
138
- ENV RUSTUP_HOME=/usr/local/rustup
139
- ENV CARGO_HOME=/usr/local/cargo
140
- ENV PATH=/usr/local/cargo/bin:$PATH
141
- RUN curl -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path && chmod -R a+rx /usr/local/cargo /usr/local/rustup
142
- # Bun (fast JS runtime, bundler, and package manager)
143
- ENV BUN_INSTALL=/usr/local/bun
144
- ENV PATH=/usr/local/bun/bin:$PATH
145
- RUN curl -fsSL https://bun.sh/install | bash
130
+
131
+ # Uncomment to enable additional runtimes (Go, Java, Rust, Bun):
132
+ # extended:
133
+ # description: Base image + Go, Java, Rust, and Bun
134
+ # dockerfile_hook: |
135
+ # # Go
136
+ # RUN apt-get update && apt-get install -y --no-install-recommends golang-go && rm -rf /var/lib/apt/lists/*
137
+ # # Java (headless JDK)
138
+ # RUN apt-get update && apt-get install -y --no-install-recommends default-jdk-headless && rm -rf /var/lib/apt/lists/*
139
+ # # Rust (system-wide)
140
+ # ENV RUSTUP_HOME=/usr/local/rustup CARGO_HOME=/usr/local/cargo PATH=/usr/local/cargo/bin:$PATH
141
+ # RUN curl -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path && chmod -R a+rx /usr/local/cargo /usr/local/rustup
142
+ # # Bun
143
+ # ENV BUN_INSTALL=/usr/local/bun PATH=/usr/local/bun/bin:$PATH
144
+ # RUN curl -fsSL https://bun.sh/install | bash
146
145
  # Add more profiles here — or ask the agent inside the container to set one up for you.
147
146
 
148
147
  ```
149
148
 
150
- Two profiles are set by default. When multiple profiles are defined, totopo prompts you to pick one at session start (the choice is remembered). A profile change triggers a container rebuild on the next session.
149
+ New workspaces ship with the `default` profile active and an `extended` profile (Go, Java, Rust, Bun) included as a commented-out template — uncomment to enable. When multiple profiles are defined, totopo prompts you to pick one at session start (the choice is remembered). A profile change triggers a container rebuild on the next session.
151
150
 
152
151
  The base image is defined in [`templates/Dockerfile`](templates/Dockerfile) — inspect it to see what's already included before adding your own layers. To force a fully fresh build (no Docker layer cache), use **Manage Workspace > Clean rebuild**.
153
152
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "totopo",
3
- "version": "3.7.0-rc-2",
3
+ "version": "3.7.0",
4
4
  "description": "Run AI coding agents safely in your local codebase",
5
5
  "type": "module",
6
6
  "bin": {