unoverse 0.1.113 → 0.1.114

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.
@@ -48,8 +48,11 @@ print_access_urls() {
48
48
  echo -e " ${DIM}Use the Unoverse MCP to build agents. Somewhere, Skynet is taking notes. 🤖${NC}"
49
49
  echo ""
50
50
  echo -e " ${CYAN}Canvas${NC} ${DIM}(build agents)${NC} ${UNDERLINE}http://localhost:3001${NC}"
51
- echo -e " ${CYAN}Studio${NC} ${DIM}(build assets)${NC} ${UNDERLINE}http://localhost:3002${NC}"
52
51
  echo -e " ${CYAN}API${NC} ${DIM}(REST + MCP)${NC} ${UNDERLINE}http://localhost:4105${NC}"
52
+ # NOT A URL, BECAUSE NOTHING IS LISTENING THERE. Studio left the platform image and is
53
+ # launched from npm by `unoverse studio`, so printing http://localhost:3002 after `start`
54
+ # offered an address that could only refuse the connection.
55
+ echo -e " ${CYAN}Studio${NC} ${DIM}(build assets)${NC} ${DIM}unoverse studio${NC}"
53
56
  echo ""
54
57
  echo -e " ${DIM}▶ Next:${NC} open this repo in ${BOLD}Claude Code${NC} and ask it to build an agent"
55
58
  }
@@ -245,6 +245,13 @@ cmd_build() {
245
245
  # DEFINITION changes never need this — they synthesize from rx/ at boot; a plain
246
246
  # restart suffices. This exists for the PACKAGE-source case.
247
247
  build_component_nodes() {
248
+ # MONOREPO ONLY. packages/marketplace exists in the platform checkout and nowhere else, so
249
+ # in a universe this printed a heading, failed a `cd` into a directory that has never been
250
+ # there, and told the developer to "re-sync/update the starter" — advice that could not
251
+ # help, for a step that should not have run. A universe gets its components as rows, from
252
+ # the marketplace or a Studio publish; there is nothing local to build.
253
+ [ -d "$ROOT/packages/marketplace" ] || return 0
254
+
248
255
  banner "Component Nodes (definition-backed)"
249
256
 
250
257
  echo " Building the marketplace package locally (bundle-defs + tsc → dist)..."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unoverse",
3
- "version": "0.1.113",
3
+ "version": "0.1.114",
4
4
  "description": "The Unoverse front door — create a Studio project, a universe, or a client app, and launch Studio.",
5
5
  "license": "SEE LICENSE IN README.md",
6
6
  "type": "module",