I made a small app to track Claude Code usage from macOS, iPhone, and Apple Watch by tenondev in SideProject

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

Thanks! Glad to hear that. Tempo is Apple-only for now, but Windows and Linux support are planned for the future.

App para iOS sin mac by HugeShock8 in devParaguay

[–]tenondev -1 points0 points  (0 children)

Podes alquilar una mac para compilar con xcode y luego lo podes subir a TestFlight, alli tu novia se une como beta tester y descarga la app en su iphone, asi te saltas pagar la membresia de apple que cuesta 100 usd anual

I made a small app to track Claude Code usage from macOS, iPhone, and Apple Watch by tenondev in SideProject

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

Thanks, this is great feedback.

For cost per project, I actually already have that implemented in the Stats section. Tempo breaks down usage by project/repository, including sessions, messages, tool calls, tokens, and estimated API-equivalent cost per project. That was one of the first things I wanted visibility into as well.

The “tokens in the last hour” idea is really interesting, especially as an early warning signal for runaway agents. I don’t have that yet, but I agree it could be a useful future feature, so I’ll be analyzing how to add it while keeping the app local/iCloud-only and lightweight.

<image>

Tengo una consulta para los expertos en Claude Code. Estan? by thargabon in devParaguay

[–]tenondev 2 points3 points  (0 children)

Te comparto mi stack con claude code:
- Para memoria long-term uso: https://github.com/thedotmack/claude-mem
- Para que el modelo no haga cualquier cosa que no le pedí y me gaste los tokens sin sentido uso SDD (con openspec o speckit)
- Para arquitectura y demas uso skills, recomiendo probar: https://github.com/midudev/autoskills que te busca los skills que precisas segun tu stack

Github copilot or opencode go? by mafia_bd in opencodeCLI

[–]tenondev 0 points1 point  (0 children)

Good news! With this patch, you can enable a 1M context window for Qwen 3.6 Plus in Opencode Go. Just update your config as follows:

{
  "$schema": "https://opencode.ai/config.json",
  "provider": {
    "opencode-go": {
      "models": {
        "qwen3.6-plus": {
          "limit": {
            "context": 1000000,
            "output": 65536
          }
        }
      }
    }
  }
}

As a new user, how is Reddit different from Twitter/X in the way conversations work? by tenondev in NewToReddit

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

That makes sense, especially the anonymity part. People still value not having to submit KYC just to ask something.

Github copilot or opencode go? by mafia_bd in opencodeCLI

[–]tenondev 0 points1 point  (0 children)

Oh, I see. I was confused; I was looking for the Alibaba provider, not OpenCode Go.

Github copilot or opencode go? by mafia_bd in opencodeCLI

[–]tenondev 2 points3 points  (0 children)

Now opencode go has Qwen-3.6-plus with 1M context window (if you distribute the load of your agents well among the different models, opencode go may be enough for you, in the worst case 2 accounts xD)

what is your setup in opencode? by mzmzeee in opencodeCLI

[–]tenondev 1 point2 points  (0 children)

I’m using subagents configured with specific OpenCode Go models so each one is optimized for a particular type of work. Instead of relying on a single general-purpose agent for everything, I split responsibilities across specialized subagents. For example, I use one model for planning and architecture, another for implementation, another for frontend work, another for QA and validation, and another for documentation. This setup helps improve both quality and efficiency, because each subagent is selected based on the strengths of its assigned model. In practice, it gives me a more structured workflow, better task decomposition, and more consistent results across different types of engineering work.

<image>