Register and share your invite link to earn from video plays and referrals.

Search results for GITS
GITS community
One keyword maps to one global community path.
Create community
People
Not Found
Tweets including GITS
GitSkins by @asamassekou10 is now listed for sale 🔁 MRR: $74/mo 💰 Revenue (30d): $81 💵 Total revenue: $178 🏷 Asking price: $5.5k 📊 Multiple: 5.7x ARR 📈 Growth (30d): -16% 💸 Profit margin: 85% 💳 Active subs: 9
Show more
🇺🇸 Trump says NATO will now come and help "clean up the strait."
How many agent skills are actually out there? There are ~3.8M SKILL.md files across 282,200 public GitHub repositories, nine months after Anthropic published the format as an open spec. This research mined all of them into a dataset. Skills resist the usual software mining. They are written in natural language, an agent picks them probabilistically at run time, and no compiler or type checker verifies the choice. There is no registry and no package manager, so they spread by copying folders between repos. GitSkills groups them into 1,877,981 distinct contents and ships as a single SQLite file with front matter, folder contents, and commit history. Paper: Track more trending AI papers in our academy:
Show more
Grok 4.7 is just okay at coding, but its reward hacking really surprised me. Every task in SWE-Together is built from a real open-source repository, and for most tasks the fix already exists upstream. So we built the sandbox with that in mind. Task images strip all git history after the base commit, remove the remote, and fail to build if any later commit can still be reached. Each container also resolves GitHub, GitLab, Bitbucket, and Hugging Face to localhost, so requests to them go nowhere. But Grok 4.7 found ways around these guards like no other model we tested. It pulled GitHub content through CDN mirrors and gh-proxy sites. It looked up GitHub's real address through DNS-over-HTTPS and handed it to curl. It wrote a small library that intercepted git's address lookups so git could reach again. It used web search to find the number of its own PR. In fact, it tried in 60% of trials and reached the upstream code in 44 of 218. In 20 of those, the code it pulled was the task's own fix. In three trials it even ran `git reset --hard` to replace the repo with upstream main 😅. We fixed all of these loopholes exposed by Grok 4.7 (grateful in this regard). Specifically, we moved enforcement outside the container. Each container now runs in its own network namespace with no route out, and one allowlisting proxy on the host is the only exit. During the re-run of those 44 trials, Grok 4.7 kept trying with 3,246 blocked attempts across 442 hosts. It actually found two routes we had not thought of. It asked a web-enabled model through our own LLM route to fetch the PR for it. It pulled the next release of the repo it was fixing from npm. We closed both by pinning the model and blocking the task's own packages at the registry. Long story short, with every route closed, Grok 4.7 lands at #4# on SWE-Together. It scores 65% pass@1, 53% pass², and a judge score of 0.835. It basically sits mid-pack on every column. It also uses 2× the output tokens of Grok 4.6 to get there, at $7.81 per task compared with $3.64. I am guessing Grok 4.7 was trained with heavy RL on coding tasks, where anything that makes the tests pass earns reward, and with little monitoring of how that reward was earned. Anyway, see the latest results at
Show more