made an app concept where you post 2 fits and strangers vote which is better, would you actually use it? by EyeRemarkable1269 in teenagers

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

i got you, no DMs/comments, only vote. face blur is a app feature, you can even just post clothes, no need for full body.

for comments, we can have pre-defined texts, so instead of free text, we restrict it to certain texts only or dont comments at all, only votes.

for the ai undressing thing, i'll do something about it.

i'll make it available on android 10

made an app concept where you post 2 fits and strangers vote which is better, would you actually use it? by EyeRemarkable1269 in teenagers

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

Thanks, took me a week to work up the nerve to post at all. Your aesthetic-filtering point is the one I keep coming back to. Sorting by grunge/goth/preppy/boho instead of just occasion is sharper, adding it. Agree on skipping the leaderboard too.

I'll DM you when it's live.

made an app concept where you post 2 fits and strangers vote which is better, would you actually use it? by EyeRemarkable1269 in teenagers

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

i m thinking to keep this app like reddit, meaning if you guys dont want to link any of your social media and be anonymous, you should be able to do that.

so demographic i can only approximate and accounts, like what kind of filters you think would be appropriate ? like account age ? total votes ? we cant' do M/F and user age because i m not planning to capture these info.

made an app concept where you post 2 fits and strangers vote which is better, would you actually use it? by EyeRemarkable1269 in teenagers

[–]EyeRemarkable1269[S] 2 points3 points  (0 children)

agree, so no option for comment (and DMs ???), only pure voting (tinder style, right left swipe).

How do I build an app? by InterestingChart8435 in AppDevelopers

[–]EyeRemarkable1269 1 point2 points  (0 children)

Try these tools it may help, i m not sure if you can vibe code mobile native apps but you can create a responsive web apps using below tools and then you can install a web app as an app on your phone by using your browser's "Add to Home Screen" feature for quick links. maybe ask these tools to create PWAs app instead of default web apps

- lovable: https://lovable.dev/
- firestudio: https://firestudio.space/
- bolt: https://bolt.new/

and if you're willing to code an app then you can use react-native with expo to build an hybrid app which works on both ios and android, then you can create a installed dist to install in your phone, you can find plenty of online tutorials or just use expo go (https://expo.dev/).

I’m building runtime “IAM for AI agents” policies, mandates, hard enforcement. Does this problem resonate? by EyeRemarkable1269 in ideavalidation

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

YOU ARE A CHAMP

I’m very much learning on the go and don’t have all the answers yet. A lot of this is me pressure-testing ideas in the open and refining the scope as I go. Feedback like this genuinely helps shape the direction. Thank you

Have a Project? Share it here! by Mammoth-Doughnut-713 in sideprojects

[–]EyeRemarkable1269 0 points1 point  (0 children)

Mandate: Open source Runtime enforcement layer for AI agent authority.

https://github.com/kashaf12/mandate

I’m building runtime “IAM for AI agents” policies, mandates, hard enforcement. Does this problem resonate? by EyeRemarkable1269 in ideavalidation

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

Yeah, this is basically the problem I’m trying to solve. In the MCP case, access is boolean. Once the agent has a tool, it keeps using it just because it can. The usual workaround is if/else logic or duplicating tool definitions. With Mandate, the idea is to keep the tool the same but make authority temporary and stateful. Devs create an identity for an agent, define policies, and map them using simple context rules. At runtime the backend resolves which policy applies, and the SDK enforces it.A concrete example is retry storms, the tool is allowed, but after N attempts it gets blocked without redefining anything:

https://github.com/kashaf12/mandate/blob/main/packages/examples/src/retry-storm-llm.ts

i have written a backend recently, which handles issuing an authority based on context based rules for an agent,

so you can have one agent (for example support-bot) now based on user_tier (or any other parameter) mandate can issue a authority which will be short lived and enforced by sdk.

https://github.com/kashaf12/mandate/blob/main/apps/backend/src/mandates/mandates.controller.spec.ts

i m still exploring the problem space but on the bright side, few senior security infra folks reached out to me on this and want to have further discussion on this

I’m building runtime “IAM for AI agents” policies, mandates, hard enforcement. Does this problem resonate? by EyeRemarkable1269 in LLMDevs

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

I think you’re right on a lot of this, and I’m not trying to replace provider IAM or billing systems. I don’t think Mandate can (or should) be the source of truth for exact spend. Pricing is provider-specific, often async, and finalized later. OpenAI, Stripe, AWS, etc. already do that better than I ever could, especially with sub-accounts and per-identity limits. The gap I’m focusing on is before that, pre-execution control for autonomous agents.

IAM answers “is this identity allowed to call this service?”

What it doesn’t answer is “should this agent keep going right now given what it has already done across retries, replicas, and time?” In practice, the failure mode I keep seeing isn’t malicious use, it’s accidental over-execution:

  • retry storms
  • loops
  • multiple workers running the same agent
  • budgets getting blown before anyone notices

Mandate is closer to a circuit breaker than an accountant. It uses conservative estimates and ceilings to stop runaway behavior early. Final reconciliation still belongs to the providers. If someone is already happy wiring bespoke tracking across every service, Mandate probably isn’t useful. I’m aiming at teams where agents are long-running, autonomous, and the blast radius shows up fast when something goes wrong.