u/P4wla

My tiktok videos suddenly have 0 views

So, I started clipping long format videos we had at our company into short format videos (with captions and engaging hooks, using a tool designed for that). The first 10-15 videos I posted had 700-900 views, but now, all videos have 0 views.

I know those videos are not engaging enough, I consider them bad for tiktok (we're creating better shorts and will post them soon). But I'm afraid that tiktok algorithm has labeled my content as bad/not engaging and it's not gonna show any of my videos from now on.

Any ideas on what to do? I'm thinking about deleting the 0 views videos or even create a new account.

reddit.com
u/P4wla — 3 days ago

Just out of curiosity, where do you use claude code? I started with the terminal but then I tried the desktop app and I'm very happy with it. Do you see any advantages in any place over the other?

reddit.com
u/P4wla — 19 days ago

Instead of sending every tool's full schema upfront, claude code sends a list of tool names, then a runtime instruction telling the model: "if you want one of these, you have to call ToolSearch first to load its schema." The instruction lives inside a <system-reminder> tag injected into the conversation. Here's what I captured:

&lt;system-reminder&gt;
The following deferred tools are now available via ToolSearch. Their 
schemas are NOT loaded — calling them directly will fail with 
InputValidationError. Use ToolSearch with query "select:&lt;name&gt;[,&lt;name&gt;...]" 
to load tool schemas before calling them:

AskUserQuestion
CronCreate
CronDelete
CronList
EnterPlanMode
EnterWorktree
ExitPlanMode
ExitWorktree
Monitor
NotebookEdit
PushNotification
RemoteTrigger
TaskOutput
TaskStop
TodoWrite
WebFetch
WebSearch

[+ ~130 MCP tools (Slack, Notion, Gmail...)]

</system-reminder> And same goes for skills, another <system-reminder> lists each one with a single-line description.

Those <system-reminder> are sent only inside the 1st user message of the conversation.

This architecture makes a lot of sense actually. In my case, the system instructions + reminders alone burned 38k tokens (I sent a “hi” message to test this). Loading every tool's full schema on top of that would be painful.

reddit.com
u/P4wla — 25 days ago