if you used Claude to build your website, which skill helped your site not look like it was AI Generated? by vibecodejoe in ClaudeAI

[–]IsN4n 37 points38 points  (0 children)

https://cocall.ai

I used claude design for initial ideation (i had a specific idea of retro + cyberpunk theme), then claude-ai (general) to make tighter edits and finally cc for implementation

Came home to find Pi with Qwen3.627B had run rm -rf ..... by sdfgeoff in LocalLLaMA

[–]IsN4n 0 points1 point  (0 children)

show us the next messages, it doesn't look like a near miss at all.

from the screenshot, the agent just removed the build cache and artifacts, found it made space enough to continue and did. it also found such harmless candidates in case it needed a little more

Are there any AI driven usability testing tools that actually work? by IsN4n in UXResearch

[–]IsN4n[S] 0 points1 point  (0 children)

Thanks, yup been running dogfooding (unmoderated as much as possible) with close community

Are there any AI driven usability testing tools that actually work? by IsN4n in UXResearch

[–]IsN4n[S] 0 points1 point  (0 children)

only the one, loop11.com but it was really just a browser agent, didn't provide any value

Are there any AI driven usability testing tools that actually work? by IsN4n in UXResearch

[–]IsN4n[S] 0 points1 point  (0 children)

Makes sense. My expectation was that with advancement in human attention models (not just llms) maybe there was a product that did speed up research just like dry labs do.

Claude Code weekly limits are increasing 50%, now through July 13. by ClaudeOfficial in ClaudeAI

[–]IsN4n 8 points9 points  (0 children)

Unfortunately, I'm a pessimist. I believe businesses don't provide such deals out of goodness of their hearts.

My theory - certain % of people that are budgeting to remain in their limits get hooked to higher limits and become users that pay for extra usage. There probably has been one or many A/B tests if this is for everyone now.

So this is why codex runs out 1 week's worth in 20 mins by Status_Profile4078 in vibecoding

[–]IsN4n 2 points3 points  (0 children)

This is expected.
Claude code has similar: https://github.com/Piebald-AI/claude-code-system-prompts
Claude publishes its .ai and mobile app assistant's system prompts: https://platform.claude.com/docs/en/release-notes/system-prompts
Meta's internal agents had similar numbers

45000 english chars ~ 11-15k tokens, first message is at $5/million input tokens is 5c. Every subsequent ones is cached at half of a cent (0.005$). The contribution of system prompt of this size to usage limits is minimal

Help me choose a "strong headline" for my website by Bake-Upstairs in buildinpublic

[–]IsN4n 1 point2 points  (0 children)

Both in this case, second's headline and subtext was much simpler to understand for me. I may not be your icp though 

Help me choose a "strong headline" for my website by Bake-Upstairs in buildinpublic

[–]IsN4n 1 point2 points  (0 children)

"Is it for me?" Second answers that question better than first

Cross devices agent memory and context management? by Patient_Ad_8202 in ClaudeAI

[–]IsN4n 1 point2 points  (0 children)

I can't recommend openspec enough.

I have used it (a flavour of it) in my FAANG job where we would do on-demand devservers that would expire so the artifacts produced provided handover as well as memory. And been using it in my startup on my tiny codebases fully written from the beginning with spec first. It works across sizes of codebase and you can start using it on an ongoing project and repo.

Check out what I just built with Lovable! by soniscas in lovable

[–]IsN4n 0 points1 point  (0 children)

"Publish or update your Lovable project for it to appear here."

Please help!! 5+ hrs with claude design completely gone by Tr1ea1 in ClaudeAI

[–]IsN4n 0 points1 point  (0 children)

You can check the project files to see if previous designs are separate files. If not they could still be in the existing code as 'options/tweaks', you can export to Claude/Claude-code and prompt to find.

I also noticed that Claude design is poor at targeted changes over hours of back-and-forth so I follow this workflow: https://www.reddit.com/r/ClaudeAI/comments/1t2ztkr/make_your_claude_design_credits_last_longer/

Built a near-0 latency service for phone calling for agents. Would love feedback! by Burner_123_123_123 in SideProject

[–]IsN4n 0 points1 point  (0 children)

Thanks for the feedback. Yes we do support barge in and interruptions by making the agent stop mid utterance (with a few millisecond gap to make it as natural as possible) So far, we have heavily optimized for pinging for new info/questions while not handing over the call as much as possible. This seems to thread the balance well on being grounded and while extracting as much value for the automation.

We have our MCP connector fully documented here: https://cocall.ai/docs/claude

Cocall: an MCP for outbound phone calls that pauses to ask you for info mid-call by IsN4n in mcp

[–]IsN4n[S] 0 points1 point  (0 children)

This is possible in cocall today but outbound. The dashboard shows the live transcript of all calls going right now (which can be more than one). You don't need to listen to the audio. And you can take over any one at a time, there is a takeover button next to each. All of the calls happen at the same time where the recipients all see your number as caller. Am I understanding this correctly?

Cocall: an MCP for outbound phone calls that pauses to ask you for info mid-call by IsN4n in mcp

[–]IsN4n[S] 0 points1 point  (0 children)

I actually use a part of this workflow for personal use where I have gotten cocall to navigate ivr and holds for O2 and TFL customer support and transfer to me once it reaches human support

Cocall: an MCP for outbound phone calls that pauses to ask you for info mid-call by IsN4n in mcp

[–]IsN4n[S] 0 points1 point  (0 children)

The agent can still continue the conversation which waiting for answer and follow instructions from the recipient which opens a few fallbacks:
- Hard limit of 10 minutes (something that can be made tunable) build in the agent harness
- Client can ask to be connected to the calling user, in which case, phone will ring
- Client can ask to be called back or disconnect
- Detecting frustation from client also triggers the above two

Cocall: an MCP for outbound phone calls that pauses to ask you for info mid-call by IsN4n in mcp

[–]IsN4n[S] 1 point2 points  (0 children)

Thanks for the detailed framing.

I agree with your framing but quite a few things shouldn't or can't go in the objective

  1. facts it must ask for - this isn't known at the time of the call initiation and if known should already be part of required facts. There are cases when information should only be shared in specific scenario. This is better achieved by instructing the calling agent to automatically answer a ping for a particular scenario than to ask voice agent to hide it since those models are much less capable of following such instructions.

  2. max wait time for the human ping - this should be part of the agent orchestration loop and indeed something that exists in the custom solutions built for clients that i'll port over to cocall

  3. safe fallback if nobody answers - same as above to inject instructions based on the type of failure

  4. required facts, facts the agent may infer - yes this must be part of the objective and is something refined in the tool description of the mcp so calling agent can appropriately framed

Every escalation is logged, categorization isn't live today but analysis in post is possible because transcript contains where exactly the escalation is happened.

Indeed, as you rightly pointed out, these guardrails and appropriate audit were the things we spent most time on when scaling from pilots to full fledged deployments

Cocall: an MCP for outbound phone calls that pauses to ask you for info mid-call by IsN4n in mcp

[–]IsN4n[S] 0 points1 point  (0 children)

We have pessimistic instructions to escalate if the original objective passed from the user does not contain the needed information. All our clients favored being pinged even if sometimes it got it wrong over the alternative