loopshouse 0.1.0 → 0.1.1

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/dist/loops.js +2 -2
  2. package/package.json +1 -1
package/dist/loops.js CHANGED
@@ -59234,7 +59234,7 @@ hackathon.command("ideate", {
59234
59234
  retryable: false
59235
59235
  });
59236
59236
  }
59237
- const { data: tracks } = await supabase.from("booster_tracks").select("sponsor_name, track_description").eq("hackathon_id", options.hackathonId);
59237
+ const { data: tracks } = await supabase.from("hackathon_tracks").select("sponsor_name, track_description").eq("hackathon_id", options.hackathonId);
59238
59238
  let projectSnapshot;
59239
59239
  let projectName;
59240
59240
  if (options.projectId) {
@@ -59268,7 +59268,7 @@ hackathon.command("ideate", {
59268
59268
  message: options.message,
59269
59269
  conversation_history: conversationHistory,
59270
59270
  hackathon_context: {
59271
- theme: hackathonData.theme,
59271
+ theme: hackathonData.theme ?? "",
59272
59272
  problem_statements: hackathonData.problem_statements || [],
59273
59273
  sponsor_tracks: tracks?.map((t) => ({
59274
59274
  sponsor: t.sponsor_name,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loopshouse",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "Loops House CLI — manage hackathon projects, ideate with AI, and submit from your terminal or AI agent",
6
6
  "license": "MIT",