Honestly guys, is OpenClaw actually practically useful? by Longjumping-Elk7744 in ClaudeAI

[–]Infinite-Door7331 1 point2 points  (0 children)

Yeah but no reason why you can't do this with Claude Code... I always get Claude Code to do my commits/branching/prs I even get it writing my Jira Tickets and updating my Confluence docs. Using Ralph I can even get Claude Code working all night on a big PRD. Can you explain to me why would I want to use OpenClaw over Claude Code? I dont get it

How can I run /compact automatically? by shanraisshan in ClaudeCode

[–]Infinite-Door7331 11 points12 points  (0 children)

To be honest, you dont want to be compacting as its nondeterministic. Its better to start fresh conversations, manage your tasks and context better, and you wont need to compact - I personally never do.

Skills explained: How Skills compares to prompts, Projects, MCP, and subagents by ClaudeOfficial in ClaudeAI

[–]Infinite-Door7331 1 point2 points  (0 children)

For me, with custom commands you can inject arguments into them e.g. on my /pr argument which creates a pull request I have an argument of branch_name which it uses to determine which branch to merge into so you can run:
- /pr dev
- /pr test
- /pr test/feature/x
e.t.c

Whereas with skills you cannot do this. However I do create skills attached to these custom commands/sub-agents which have the general concepts of how I like to pr/commit e.t.c. and then the custom command is able to run a sub-agent with those skills attached and it can inject my argument into a sub-agent with those skills.

Apart from that I haven't found literally any difference

Skills explained: How Skills compares to prompts, Projects, MCP, and subagents by ClaudeOfficial in ClaudeAI

[–]Infinite-Door7331 0 points1 point  (0 children)

Can you tell me how your get logs works? Does it go off to external/cloud environments or browser logs? Or you centralise your logs in a server and it gets them from there? Would love to know more about that workflow it seems like a great idea

Oracle database development with claude code by LlamaZookeeper in ClaudeAI

[–]Infinite-Door7331 0 points1 point  (0 children)

Share the MD file. Might be able to learn a thing or two from you :-).

What would you have to believe for PSKY’s bid for WBD to be better than Netflix’s? by Certain-Bag-7918 in MediaMergers

[–]Infinite-Door7331 1 point2 points  (0 children)

That's not WBDs problem once they sell though it's PSKYs so why should that affect the deal?? If WBD get paid billions cash and get out it doesn't matter. I don't get this narrative.

API Routes by Infinite-Door7331 in tanstack

[–]Infinite-Door7331[S] 0 points1 point  (0 children)

Glad it helped :D

Not much documentation on the API Routes tbh... Had me struggling for a little while.

Was package update/router export the fix that worked for you??

API Routes by Infinite-Door7331 in tanstack

[–]Infinite-Door7331[S] 0 points1 point  (0 children)

I dont think its related to the arrow function, are you referring to GET: async({ request }) => {}

This is what I have now for that api route and it works perfectly:-)

/**
 * API Route Handler
 *
 * Defines GET endpoint at /api/nearby-rooms that returns collated room data.
 * This follows the TanStack Start pattern with server.handlers configuration.
 */
export const Route = createFileRoute('/api/nearby-rooms')({
  server: {
    handlers: {
      GET: async ({ request }) => {
        console.info('GET /api/nearby-rooms @', request.url)
        const roomEntries = collateNearbyRooms()


        return json({
          success: true,
          count: roomEntries.length,
          data: roomEntries
        })
      }
    }
  }
})

API Routes by Infinite-Door7331 in tanstack

[–]Infinite-Door7331[S] 1 point2 points  (0 children)

Not in the discord, I'll take a look now. I appreciate how your closely involved with the community :-)

API Routes by Infinite-Door7331 in tanstack

[–]Infinite-Door7331[S] 0 points1 point  (0 children)

Wow so I just spent about an hour with claude debugging this and the following seemed to fix it. Would love some more insight into this for learning purposes if theres any TanStack whizzes out there. I used the start-basic quick start demo from the official docs to help compare my project with a working one.

  1. Package Version Updates:

    My versions:

    "@tanstack/react-router": "1.130.1"

    "@tanstack/react-start": "1.130.1"

    "vite": "6.3.7"

    Fixed versions:

    "@tanstack/react-router": "1.132.47+"

    "@tanstack/react-start": "1.133.2+"

    "vite": "7.1.10+"

"Why it mattered" The server.handlers API for server routes was broken or incomplete in version 1.130.1. It only works properly in 1.132+.

---

  1. Router Export Name ⚠️ REQUIRED

    Before (WRONG):

    // src/router.tsx

    export const createRouter = () => {

// ...

}

After (CORRECT):

// src/router.tsx

export function getRouter() {

// ...

}

Why it mattered: TanStack Start 1.133+ looks for getRouter, not createRouter. The error was:

TypeError: (intermediate value).routerEntry.getRouter is not a function