NHacker Next
  • new
  • past
  • show
  • ask
  • show
  • jobs
  • submit
Launch HN: Cohere (YC S20) – Real-time user support for web apps
CoffeePython 1255 days ago [-]
I didn't find the demo very easily but here it is for others[1].

Pretty amazing demo

1- https://cohere.so/demo

rapind 1255 days ago [-]
Slightly frustrated the demo broke my back button (history hijacking) on my phone (safari) and I had to close the window (should have opened it in a new tab i guess).
40four 1255 days ago [-]
Same for me. The demo is really cool, this seems like a fantastic concept. But getting my back button hijacked drives me crazy.
yunyu 1254 days ago [-]
We fixed the back button issue – the root cause seems to have been that iframe content can interfere with the parent's navigation. Thanks for reporting!
yunyu 1255 days ago [-]
Thanks for reporting, this shouldn't be the case (I'm unable to replicate it on Chrome). Will test on iOS!
40four 1255 days ago [-]
No sweat. It was on iOS for me. I bookmarked you guys though, this product looks really nice!
swyx 1254 days ago [-]
also happened on Android chrome
1254 days ago [-]
yunyu 1255 days ago [-]
Beat us to the punch :)
mwcampbell 1255 days ago [-]
> Pointing things out over Zoom screenshare is highly time consuming ("click the 4th checkbox on the right", "click the handle and drag")

There are also accessibility issues, on both sides of the connection. For example, if the person providing support is blind, image-based screen sharing is completely unusable; they would have to ask the customer to run a screen reader and share audio (or more likely, they just wouldn't be able to get a job providing remote support in the first place, even if they're technically proficient). If the person receiving support is blind, or has some other disability, it may be challenging for them to get the person providing support to give them instructions that work for them.

In principle, this DOM-sharing approach could solve these problems. Implementing a shared cursor in an accessible way could be an interesting challenge though.

yunyu 1255 days ago [-]
We're looking for ways to reduce the friction needed to get support, and this is a super interesting use case we haven't thought of!
m00x 1254 days ago [-]
You can give out remote control on Zoom as well. I'm not sure how this is better.
dternyak 1255 days ago [-]
How do you handle browsing? Does Cohere only work with SPAs? Do you inject turbolinks or something similar to prevent resets of the execution environment when users navigate between pages?
yunyu 1255 days ago [-]
Our non-SPA users generally stick us in the head of their standard page template. We store a token in sessionStorage (so it's not trackable across tabs) that is sent over when the page is reloaded in order to keep track of sessions across navigations.
mwcampbell 1255 days ago [-]
In theory they could use something like a session cookie to keep the server-side session intact when page navigation happens. I think I would prefer that over injecting something like Turbolinks or limiting this to SPAs.
aloukissas 1255 days ago [-]
That's pretty cool (the GoToMyPC paradigm has been really successful for desktop app support). Did you end up using Caldera or move to LiveView for this?
yunyu 1255 days ago [-]
Thanks, we're hoping to be the GoToMyPC/TeamViewer for web apps! A lot of the input handling code is derived from Caldera, but since we're embedded on other people's websites, we ended up going for a more conventional stack (a JS script talking over WebSockets).
ignoramous 1255 days ago [-]
> ...we're hoping to be the GoToMyPC/TeamViewer for web apps!

For a different approach to remoting, see the recently announced Cloudflare Browser: https://blog.cloudflare.com/browser-beta/

yunyu 1255 days ago [-]
Streaming over draw calls is a super unique take on this – I think this is what Mighty.app is trying to do as well. Browsing the web is the perfect use case for offloading client-side compute, and I'm excited to see this industry develop.
aloukissas 1255 days ago [-]
So this means this only works for NodeJS-powered web apps?
yunyu 1255 days ago [-]
It works for all tech stacks, as our integration process is client-side only! You don't need to change anything on the server to use Cohere.
mwcampbell 1255 days ago [-]
Just curious, what is Caldera in this context? The only Caldera I was familiar with was the 90s Linux distro.
yunyu 1255 days ago [-]
It's our earlier project that used DOM streaming to allow developers to build server-side React apps: https://github.com/calderajs/caldera-react
nc 1255 days ago [-]
Interested to hear how people are using this product? I've tried experimenting with building frontend apps in a way where it's easy to see what users are doing in the past to help with research.
yunyu 1255 days ago [-]
People tend to use it either for support or training. For support, it's more actively taking control of the other person's screen and performing the task for them. In the training use case, they tend to point things out and let users navigate the app themselves!
orliesaurus 1253 days ago [-]
I really like the idea and I did an in-depth analysis of your company's homepage here [1]. I remember chatting with the founder of Paircast [2] about this specific issue in the web, the ability to drive and replay sessions + the ability to provide real-time support was totally missing. I am mind blown. That being said I am not sure why you're not using the full potential of your tool to depict the capabilities of what you guys are trying to achieve. If you hire a copywriter or a conversion focused person, they will point the same issues out.

Regardless this is a very promising technology, I would LOVE to see this as part of Intercom/Chatwidgetcompanies in the future!

[1] https://youtu.be/DNjuzZ0FT5Y

[2] https://paircast.io

1255 days ago [-]
CoffeePython 1255 days ago [-]
Nice idea! I think this would be very useful for myself and other indiehacker types.

Is there a video of a demo of the product anywhere?

Also is there audio involved as well? How do you communicate when you're in a session with the user?

yunyu 1255 days ago [-]
Thanks for pointing this out – we're working on putting a video on the landing page. If you'd like to try out Cohere before integrating, there's an option to connect an example webpage to your team after signing up!

Most of our users usually are already on a call or chat when they hop in a Cohere session, and we integrate with Intercom and Slack to make this easier. We're definitely thinking of ways to streamline this more!

mwijaya736 1254 days ago [-]
Can we use it for Android app or only web app for now?
radihuq 1255 days ago [-]
This looks really useful! I have two questions:

1) What's the process to integrate this into an existing application?

2) I'm curious about your choice of branding. Your website & logo looks really clean -- was there anything in particular you guys discussed when deciding on brand colors, design of logo, and overall look & feel of your product?

yunyu 1255 days ago [-]
Really appreciate the feedback!

1) All you need to do is install our NPM module (or add a script tag to your website), and call Cohere.init when your app has launched. If you want to see logged in users identified in the dashboard, you can optionally pass their info in: https://docs.cohere.so/#/?id=optional-identifying-users

2) This isn't the most detailed answer, but we went off of gut feeling for the overall look and did the graphics/interfaces ourselves. The starting point was the initial shade of blue, and we played around quite a bit with variations on that hue. We ended up working with a design firm (Aesthetic S18) for the logo, which we're quite happy with!

radihuq 1255 days ago [-]
Awesome, thanks for info! The docs look great -- Also (I don't know if this is intentional or not, but) I wasn't able to find a link to the docs on the landing page. Could be useful to include it imo
yunyu 1255 days ago [-]
Appreciate the feedback! We're revising the CTA section and will definitely take note ;)
samradelie 1255 days ago [-]
If you want to make your app respond to clicks etc. , do you have to add anything to the jsx? I'm curious how interaction works. This is very cool btw, at first I was imagining you're server signaling WebRTC sessions between people.
yunyu 1255 days ago [-]
No changes should be needed! We wrote some gnarly stuff to make forwarding inputs work across a variety of frameworks. This includes a bunch of React-specific hacks to support the synthetic event system, and some locks to ensure that people can't override each other's scrolling or typing inputs.
samradelie 1255 days ago [-]
Thanks, very spicy. You should see how much time my gf has to evaluate law startup apps within her firm... You know something that could be cool, record + playback: the demo could be recorded once with voice over and played back for future reference within the org: "This is the playback that demonstrates importing raw docs from X, tagging and saving it to Y" , and you could record it using dummy info so there wouldn't be a risk of pollution.
kurbin 1255 days ago [-]
I didn't think this would be useful from the title, but the demo honestly blew me away. I've seen much more expensive applications that only handle read-only cursor playback, but handling real-time tab sharing is amazing.
kamesstory 1255 days ago [-]
Appreciate your kind words! Let me know if you have any questions :)
ericglyman 1255 days ago [-]
This is really clever. Just couldn't exist without the changes/standardization in browser technology that have happened in the past 1-2 years. Congrats, and really excited about the potential.
yunyu 1255 days ago [-]
Appreciate your support, Eric!
danielandrews43 1255 days ago [-]
We work with many people who are new to technology, and something like this is exactly what we are looking for to help walk our customers through our product. Amazing idea!
yunyu 1255 days ago [-]
Thanks Daniel! Let us know if you have any questions
nichol4s 1255 days ago [-]
Nice work guys! We do something similar at Surfly but we start the session through our proxy so no extension or changes to the application are required.
yunyu 1255 days ago [-]
That’s awesome – Surfly seems like it would be great for demos and scheduled calls! At the cost of the quick initial integration, we’d like Cohere to just work for any user afterwards without any effort on their end.
ublaze 1254 days ago [-]
This is a pretty innovative idea. Wonder if the underlying tech can be used to get rid of selenium tests.
sroussey 1255 days ago [-]
Mutation events/observers were made for this, glad to see it used for more that devtools.
r_singh 1254 days ago [-]
Similar product[1] exists since a few years and even works pretty well (I took a demo once).

[1] - Surfly.com

yunyu 1254 days ago [-]
Because it's a proxy, Surfly seems like it would be great for demos or scheduled calls where you're able to send out a link to the customer. After the initial integration, Cohere works for users without any effort on their end.
r_singh 1253 days ago [-]
Will check it (Cohere) out. Surfly initially started off only as a support tool though.

They have an Intercom like icon at the bottom right of the web app, via which one can share screens. It's used by a few airline companies, etc. to give hands on support to some of their older users I guess.

1254 days ago [-]
surayashivji 1255 days ago [-]
I really love how easy it is to use. How did you guys go about finding early adopters?
wasd 1255 days ago [-]
Love it. Using full story now but really want remote access. How much does it cost?
yunyu 1255 days ago [-]
Here's our current pricing: https://cohere.so/pricing
jerryliu12 1255 days ago [-]
Been using Cohere for a while now. Really impressed with how easy it is to set up!
cwhiz 1254 days ago [-]
Why is Google the only way to login? This is an instant dealbreaker for me.
mpenn 1255 days ago [-]
Would it work out of the box with a react native app?
yunyu 1254 days ago [-]
We don't support React Native at the moment, but it's something we're looking to do!
benjamincheck 1255 days ago [-]
That reads awesome! Will sure try it now!
yunyu 1255 days ago [-]
Amazing, let us know if you have any questions!
mrwnmonm 1255 days ago [-]
Wow, this is amazing!
lucasverra 1254 days ago [-]
Hello there, looks amazing.

What is the GDPR compliance paperwork to have this roll OK with GDPR folks ?

Why should I install the NPM module instead of the script ? Is there some performance gain/loss of one install method vs the other ?

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact
Rendered at 14:32:21 GMT+0000 (Coordinated Universal Time) with Vercel.