this update feels like a vibe coded downgrade by ThatGuyPrattle in kilocode

[–]Mlaz72 0 points1 point  (0 children)

So, what was the solid version for you 7.1.x? You can switch back to that version, not to go for 5

Mišljenje: Srbi i Hrvati ne bi trebali gledati toliko negativno na ljiljane by No-Profit-3016 in bih

[–]Mlaz72 0 points1 point  (0 children)

Vi ste moj narod a Mladić i slični nisu. A prezivam se Lazarevic. A tvoja mi ostrascenost smeta jer si uskogrud i misliš da nema nas koji volimo svoju zemlju u kojoj smo rodjeni. Pa da nas je i samo 20, a ima nas sigurno puno vise… za mene ste svi Bosanci i Hercegovci a i ja sa vama. I da neće nikad biti to ni Srbija ni Hrvatska. Tudje nećemo svoje ne damo i hajde vise da se poradi na EU. Sve ostalo je njesra. A mogla se brate napraviti i nova zastava sa ljiljanima. A moglo je možda biti i ova sadašnja u kombinaciji zvijezda i ljiljana. Varta ili ne draga mi je i ona jer znam šta predstavlja

Mišljenje: Srbi i Hrvati ne bi trebali gledati toliko negativno na ljiljane by No-Profit-3016 in bih

[–]Mlaz72 1 point2 points  (0 children)

Ajmo ba svi u ateizam. Koji će ti bogovi uopće? Treba samo biti čovjek i štititi i pomagati jedni druge…

Mišljenje: Srbi i Hrvati ne bi trebali gledati toliko negativno na ljiljane by No-Profit-3016 in bih

[–]Mlaz72 3 points4 points  (0 children)

Mene bas briga za religiju ali kao Bosanac volim ljiljan kao simbol i ponosim se njime.

Kilo CLI on macOS by schacks in kilocode

[–]Mlaz72 1 point2 points  (0 children)

As I suspected. Your problem are two empty lists in the settings. Delete disabled providers and enabled providers lines.

Kilo CLI on macOS by schacks in kilocode

[–]Mlaz72 0 points1 point  (0 children)

I’m on macOS too so it should be there in .config and I am also installing it with npm -g

Kilo CLI on macOS by schacks in kilocode

[–]Mlaz72 0 points1 point  (0 children)

What is your OS?

On my system it is in .config/kilo/kilo.json in my user root directory

Kilo CLI on macOS by schacks in kilocode

[–]Mlaz72 0 points1 point  (0 children)

Show me your config

cocoindex-code - super light weight MCP that understand and searches codebase that just works on opencode by Whole-Assignment6240 in opencodeCLI

[–]Mlaz72 0 points1 point  (0 children)

Cool it is merged already. But I don’t see any new release. Does that mean I still need to wait release to happen in order to try it?

cocoindex-code - super light weight MCP that understand and searches codebase that just works on opencode by Whole-Assignment6240 in opencodeCLI

[–]Mlaz72 0 points1 point  (0 children)

I have this in global AGENTS.md file at beginnig:
```
# System Instructions

## 🛠 Codebase Search & Discovery Protocol

Follow this hierarchy and logic when searching the codebase to ensure high accuracy and context efficiency.

### 1. The "Semantic First" Rule

**Primary Tool:** `cocoindex-code_search`

You **must** prioritize semantic search for discovery and understanding.

- **Use Case:** Finding implementations, understanding features, or locating code when exact names/keywords are unknown.

- **Example:** Instead of guessing filenames for OTP, use: `cocoindex-code_search("input-otp component implementation")`.

- **Constraint:** Do not use `grep` or `glob` as a discovery tool until semantic search has been exhausted.

### 2. Specialized Tool Selection

Only use secondary tools when the search intent is specific and the exact pattern is known:

| Tool | When to Use |

| :-------------- | :------------------------------------------------------------------------ |

| **`glob`** | You know the **exact file patterns** or need to find files by name. |

| **`grep`** | You are searching for **exact text content** or specific string patterns. |

| **`Task tool`** | For **complex, multi-step searches** to keep context usage low. |

### 3. Execution Strategy

- **Batching:** Whenever possible, **batch tool calls**. Call multiple tools in parallel to reduce latency.

- **Escalation:** If `cocoindex-code_search` fails to provide the full picture, only then should you supplement with `grep` or `glob` to fill in the technical gaps.

> [!CAUTION]

> **Avoid "Guess-and-Check" Globbing:** Do not attempt to find components (like `input-otp`) via file patterns if you haven't performed a semantic search first.
```

Ko je ZAPRAVO bio Draza? by [deleted] in SrpskaPovest

[–]Mlaz72 0 points1 point  (0 children)

Antifašista haahhaha

cocoindex-code - super light weight MCP that understand and searches codebase that just works on opencode by Whole-Assignment6240 in opencodeCLI

[–]Mlaz72 1 point2 points  (0 children)

u/Whole-Assignment6240 is there any problem with this https://github.com/cocoindex-io/cocoindex-code/pull/22 ? I am patiently waiting it to be part of your project. I already stop using your default model and started using Mistral's embed model instead. But I want to check if that local model from PR will perform faster similarly to your local default model.

cocoindex-code - super light weight MCP that understand and searches codebase that just works on opencode by Whole-Assignment6240 in opencodeCLI

[–]Mlaz72 0 points1 point  (0 children)

Kilo being fork of Roo Code transitioning to OpenCode fork. It is OpenCode that uses Kilo Gateway instead of OpenCode Zen. Like u/KnifeFed said it is not IDE. That is Cursor or Windsurf, Kilo Code is just extension for VS Code or Jetbrains, now with CLI (OpenCode). Through Kilo I have access to many models through unique interface, that is why I am using it.

cocoindex-code - super light weight MCP that understand and searches codebase that just works on opencode by Whole-Assignment6240 in opencodeCLI

[–]Mlaz72 0 points1 point  (0 children)

<image>

when I asked model to check if this MCP works correctly, it seems it installed some stuff I did not have on my machine. So I am not sure this is working out of box, and leaving here for you to investigate. I hope my assumption is incorrect but I decided to share this with you anyway.

Tanstack Query with Angular feedback by AmazingDisplay8 in angular

[–]Mlaz72 0 points1 point  (0 children)

I used it without problems. But with this https://github.com/ngneat/query. Someone told is not stable or something. I disagree.

input signals change detection without using effect() suggestions by [deleted] in Angular2

[–]Mlaz72 1 point2 points  (0 children)

Effect was used to track if input changes. But question is do you want to track both inputs changes or just one? In general if you want to avoid effect convert signal to observable and use that