u/Gloomy_Sense_2849

you know what's annoying?

every time I build a feature, I have to write:

- useState for state

- useEffect for side effects

- fetch + try/catch for API calls

- event handlers

- manual UI updates

over and over again. same patterns. different features.

so I made AITOS.

now I just write JSON graphs:

```json

{

"order": ["getData", "process", "save"],

"nodes": {

"getData": { "atom": "httpRequest", "url": "/api" },

"process": { "atom": "transform", "data": "{{getData}}" },

"save": { "atom": "set", "key": "result", "value": "{{process}}" }

}

}

```

that's it. no glue code. no boilerplate. just logic.

I built LinkArm (a complete AI chat app) with it to prove it actually works. 50+ JSON graphs. zero traditional code logic.

github.com/hfziqi/aitos

what do you think? am I crazy or is this actually useful?

u/Gloomy_Sense_2849 — 30 days ago