A few weeks ago I read the Balderton Capital / “vcware” thread on this forum end to end, then went deeper. I cloned all three repositories (anytype-heart, anytype-ts, anytype-kotlin), audited the telemetry / crash / analytics / push paths in the source, read the Swiss commercial register entry for the Any Association, pulled Balderton’s track record (Wonga, VanMoof, the $1.3B 2024 raise, Colin Hanna’s August 2025 departure), cross-checked the “AI replacing human support” rumour against Hacker News, Reddit and this forum, and read Steph Ango’s original “vcware” essay. A tarot card got drawn at the end for the hell of it.
This is the consolidated result. Not an accusation — an attempt to separate what is actually true (from the code and the public record) from what is marketing, hope, or anxiety.
Executive summary
Anytype is not a Signal-style foundation ring-fencing its IP from investors. It is a non-profit Swiss association (the “Any Association” in Zug) sitting alongside a VC-backed Berlin operating company, with overlapping governance. The structure gives users a credible fork-and-export escape hatch (stronger than a typical SaaS) and the founders retain voting control today — but the VCs hold real equity, a (now-former-Balderton) partner holds a board seat in both entities, and the source-available app license + association consent requirement mean the practical “sovereignty” depends on the founders continuing to hold the line.
The code audit surfaced three concrete privacy/sovereignty gaps that contradict Anytype’s “local-first, privacy-first” marketing:
- Telemetry is on by default and there is NO user-facing toggle on desktop to disable it. The Go core respects a
doNotSendTelemetryflag, but the desktop client (anytype-ts) never sends it. - Hardcoded Sentry DSN and Amplitude API key are committed in plaintext in the desktop source, not injected at build time.
- Firebase Cloud Messaging is embedded in the Android app for push notifications — meaning Google (Firebase) sees your push token even in Local-only mode, which is philosophically inconsistent with a sovereignty product.
None of these are showstoppers, but they are real sovereignty gaps that the marketing does not acknowledge. Combined with the “Any Source Available License” (not OSI-open-source), the 90% free-tier cut (1 GB → 100 MB), the aggressive chat/AI roadmap, and the multi-year bug backlog, the direction indicators are mixed-to-cautionary.
PART 1 — Code Privacy & Security Audit
1.1 Telemetry & Analytics — The Biggest Gap
What is collected
Three independent telemetry pipelines run across the codebase:
Pipeline A — In-house telemetry (anytype-heart, Go core)
- File:
anytype-heart/metrics/service.go:31 - Endpoint:
https://telemetry.anytype.io/2/httpapi(hardcoded) - Key:
INHOUSE_KEY(loaded from env / build config) - Trigger:
metrics.Service.InitWithKeys(metrics.DefaultInHouseKey)atclientlibrary/service/lib.go:38andcmd/grpcserver/grpc.go:88— runs on every app start - What it sends: app version, platform, device ID, user ID (account ID), working directory path, technical performance metrics (timing samples, long-method warnings)
- Interval: every 30 seconds, batched up to 500 events, throttled at 1000
Pipeline B — Amplitude (anytype-ts, desktop + anytype-kotlin, Android)
- Desktop file:
anytype-ts/src/ts/lib/analytics.ts:12— URLamplitude.anytype.io(self-hosted Amplitude proxy, not amplitude.com directly) - Desktop key: hardcoded in
src/json/constant.ts:5→REDACTED - Android file:
anytype-kotlin/analytics/src/main/java/com/anytypeio/anytype/analytics/tracker/AmplitudeTracker.kt - Android key: injected via
BuildConfig.AMPLITUDE_KEYfromapikeys.properties - What it sends: account ID (set as user ID), interface language, network ID, tier, plus hundreds of event types (CreateObject, ClickExport, LogOut, AddReaction, PinMessage, etc. — see
analytics.event(...)calls throughoutanytype-ts/src/ts) - Android mitigation:
TrackingOptions().disableIpAddress()atAndroidApplication.kt:115— IP collection is disabled - Desktop mitigation: none visible — no
disableIpAddressequivalent, no user-ID hashing
Pipeline C — Sentry (crash reporting, both platforms)
- Desktop file:
anytype-ts/src/ts/app.tsx:91-106—Sentry.init({ dsn: SENTRY_DSN, ... }) - Desktop DSN: hardcoded in
src/json/constant.ts:4→https://[email protected]/3 - Android:
io.sentry:dsey-androidviacrash-reportingGradle module, DSN injected fromsentry_dsninapikeys.properties - What it sends: crash stack traces, breadcrumbs (last 20 events), environment (production/development), network mode, packaged flag. URL is scrubbed (
e.request.url = ''atapp.tsx:97).
The critical flaw — no user-facing telemetry toggle on desktop
The Go core does respect a doNotSendTelemetry flag:
anytype-heart/pb/protos/commands.proto:7783:bool doNotSendTelemetry = 7;anytype-heart/pkg/lib/initialparams/initialparams.go:61:SendTelemetry: !req.DoNotSendTelemetryanytype-heart/core/metrics.go:41:metrics.Service.SetEnabled(params.SendTelemetry)
But the desktop client never sends this flag:
anytype-ts/src/ts/lib/api/command.ts:4-13—InitialSetParametersonly acceptsplatform, version, workDir, logLevel, doNotSendLogs, doNotSaveLogs. There is nodoNotSendTelemetryparameter in the function signature.anytype-ts/src/ts/lib/analytics.ts:232— callsC.InitialSetParameters(platform, ret.join('-'), userPath(), '', false, false)—doNotSendLogs=false,doNotSaveLogs=false, telemetry flag absent (defaults tofalse= telemetry ON)
I searched the entire desktop codebase for telemetry, disableAnalytics, enableAnalytics, optOut, setOptOut — no results. There is no Settings UI toggle, no preferences flag, no environment variable check. Telemetry is always on for every desktop user, in every mode including Local-only.
Privacy implication: A user who chose Local-only mode specifically to avoid server round-trips is still sending crash reports to sentry.anytype.io, performance metrics to telemetry.anytype.io, and behavioral analytics to amplitude.anytype.io — all from the desktop client. The Android app is slightly better (debug builds can disable analytics via config.enableAnalyticsForDebugBuilds), but release builds also have it on by default with no user toggle.
Recommendation
- Add
doNotSendTelemetryto the desktopInitialSetParameterscall. - Add a Settings → Privacy toggle: “Send anonymous usage telemetry” (default off for Local-only mode, default on otherwise — or better, default off everywhere with an opt-in prompt on first run).
- Move the hardcoded Sentry DSN and Amplitude key out of
src/json/constant.tsinto build-time environment injection.
1.2 Firebase Cloud Messaging (Android) — Google Dependency
- File:
anytype-kotlin/device/src/main/java/com/anytypeio/anytype/device/DeviceTokenStoringServiceImpl.kt - On every app start,
FirebaseMessaging.getInstance().tokenis fetched and registered with Anytype’s push-notification service (Rpc.PushNotification.RegisterToken). - Dependency:
com.google.firebase:firebase-messagingindevice/build.gradle:20+app/build.gradle:282
Privacy implication: Even in Local-only mode, the Android app contacts Google’s Firebase Cloud Messaging (FCM) servers to obtain a push token. Google sees the device’s IP and a persistent device identifier on every app launch. This is philosophically inconsistent with a “sovereignty” product — there is no way to opt out of FCM while still receiving push, and no way to disable it without losing notifications.
Mitigation: Offer a “No Google services” mode that disables push entirely (acceptable trade-off for sovereignty users), or switch to a self-hosted push path (UnifiedPush / ntfy / polling fallback).
1.3 License — “Source Available”, Not Open Source
All three repositories ship under the “Any Source Available License 1.0” (see LICENSE.md in each repo). Key terms:
- Non-Commercial Use (personal, academic, research) → allowed freely.
- Commercial Use → only allowed on “Allowed Networks” (networks explicitly authorized by the Any Association, listed at
networks.any.coop). - The Any Association can add or remove networks from the allowed list “upon reasonable notice.”
- You cannot sublicense or transfer rights.
This is not an OSI-approved open-source license. It is a protective, source-available license. The practical consequence:
- You can read, audit, fork, and modify the code for personal use.
- You cannot commercially host an Anytype-compatible network without the Any Association’s consent.
- The Any Association (governed by founders + Colin Hanna) retains unilateral control over which networks are “allowed.”
Anytype’s founders have publicly committed to migrating to full MIT “over time,” but as of today the apps themselves remain source-available. Only the underlying any-sync protocol is MIT-licensed.
1.4 No Hardcoded Secrets in Source (with one caveat)
I searched for hardcoded API keys, passwords, and tokens across all three repos. Findings:
- No hardcoded backend secrets (database passwords, private keys, JWT secrets) found in source.
- Caveat: The Amplitude key (
REDACTED) and Sentry DSN (https://[email protected]/3) are committed in plaintext inanytype-ts/src/json/constant.ts. These are not “secrets” in the traditional sense (Amplitude keys and Sentry DSNs are designed to be client-visible), but committing them in source rather than injecting at build time means they cannot be rotated without a code change, and they are trivially extractable from any distributed binary. - Android correctly injects its Amplitude and Sentry keys via
apikeys.properties(not committed) — better practice than desktop.
1.5 Network Security
- Android:
app/src/main/res/xml/network_security_config.xmlallows cleartext traffic only to127.0.0.1(the local gateway). All external traffic must use TLS. This is correct. - Desktop: No explicit network security config found, but Electron enforces HTTPS by default for renderer-process requests.
- Local gateway: Listens on
127.0.0.1:47800(configurable up to port 47900). Binds to loopback only — not exposed to the network. Correct.
1.6 Encryption
Anytype uses end-to-end encryption for all user content (files, objects, spaces). The encryption keys are derived from the user’s mnemonic (recovery phrase) and stored locally — Anytype’s servers cannot decrypt user content even if compelled. This is verified by the source: file blocks are encrypted with symmetric keys (core/files/files.go, pkg/lib/mill), and the key paths are stored in the file object’s metadata which is itself encrypted.
This is the strongest part of Anytype’s privacy story. Even under investor pressure to monetize data, the company literally cannot read user content. The telemetry gap (Part 1.1) is the weakness, not the content encryption.
PART 2 — The Balderton Capital / “VCware” Question
2.1 The Forum Thread
The community thread at community.anytype.io/t/balderton-capital-vcware-and-anytype-s-future/29542 (opened December 2025 by user Kyanite) is the most substantive public debate about Anytype’s governance. Key points from the original post:
- Three funding rounds documented:
- Feb 2019: $200k from Techstars
- Mar 2020: $1.2M from Altair, System.One, Tiny VC, Ash Egan
- Aug 2023: $13.3–13.4M Series A led by Balderton Capital, with participation from Connect Ventures, Foreword, Inflection.xyz, New Forge, Protocol Labs, Script Capital, SquareOne, plus angels (Trent McConaghy/Ocean, Jutta Steiner/Polkadot, Luis Cuende/Aragon, Adam Wiggins/Heroku, Peter von Hardenberg/Ink & Switch, the Libermans siblings).
- Free-tier cut from 1 GB to 100 MB (90% reduction) — matches the “subsidize-then-squeeze” vcware pattern.
- 2025 roadmap heavily features Chats, Discussions, AI integration, publishing — expansion into new verticals while core bugs persist.
- Balderton Partner Colin Hanna joined Anytype’s board as part of the Series A. His background includes SoundCloud’s aggressive-growth period.
- The “Any Association” in Zug, Switzerland is presented as governing the software, but sits alongside a cap table with multiple VC funds and a Balderton partner on the board.
The thread was closed twice by the system “due to a large number of community flags” — indicating significant community contention.
2.2 Founder Responses
Anton Pronkin (co-founder/co-CEO), post #2, 17 likes — the key official reply:
“We actually agree on one your point. If you care about digital sovereignty, you must be self-sustainable as a business. That’s exactly why we’re trying to make more money – not to ‘go vcware,’ but to stop depending on VC at all.”
“We, on the other hand, are not just building ‘an app.’ We’re building a network and infrastructure layer on which many applications can run. Anytype is simply the first client and a way to battle-test the stack. If this works, you get a decentralized network (think ‘Ethereum, but for apps like Anytype, Obsidian-like tools, etc.’).”
“Anytype is a mix of MIT-licensed and source-available components with a clear commitment to go fully MIT over time. Nobody can be prevented from using the core tech for free… Anytype is built by a non-profit Swiss association controlled by two founders and Colin Hanna, with founders holding majority voting power.”
kaye (admin), post #3, 13 likes:
“100%, it’s true that being VC-backed means that Anytype is like any other startup: it can fall prey to dynamics of fast capital. Especially if it loses voting control over its company, which fortunately is not the case today. But if we continue to take more and more funding rounds, then of course, eventually that will happen.”
2.3 The Colin Hanna Detail
A material fact the forum post did not reflect: Colin Hanna left Balderton Capital in August 2025 (per his LinkedIn: “Partner & CEO, Earendil, Aug 2025 – Present; Portfolio Board Member, Balderton, Aug 2025 – Present”). He is no longer a Balderton employee but has retained his portfolio board seats (including Anytype) as a “Portfolio Board Member.”
This slightly weakens the “Balderton is actively steering Anytype day-to-day” framing — the partner on the board has effectively transitioned out of the firm. However, the board seat and Balderton’s equity remain. The governance risk is reduced but not eliminated.
2.4 The Swiss Association Structure — Not a Foundation
This is the most important nuance. Anytype is not structured like Signal Foundation or Ethereum Foundation. It is:
- The “Any Association” — a Swiss non-profit association (Verein), registered in Zug in 2023 (same year as the Series A). Swiss commercial register (Moneyhouse):
any-20674867741, “active, founded 2023, Management: Colin Daymond Hanna et al., IT services.” - A Berlin-based operating company (Anytype) that employs the team and issued equity to the Series A investors.
The association holds the IP/license rights. The operating company holds the cap table. The relationship is: operating company (VC-backed, builds the product) ↔ association (non-profit, governs IP/license rights), with overlapping people (founders + Colin Hanna) on both.
What this means for sovereignty:
- The core
any-syncprotocol is MIT-licensed — genuinely forkable. An acquirer cannot re-close it. - The apps (
anytype-heart,anytype-ts,anytype-kotlin) are under the “Any Source Available License” — commercial use requires association consent. A hostile acquirer cannot simply buy the operating company and commercially exploit the apps without the association’s approval. - But: the association is governed by the same people who sit on the VC-backed operating company’s board. The “firewall” between association and investors is about licensing leverage, not independent governance. There is no legal mechanism (unlike a foundation charter) that prevents a future majority from approving a sale.
- Anton’s claim that “founders hold majority voting power” is credible today, but kaye’s admission that “if we continue to take more and more funding rounds, then of course, eventually that will happen” (loss of control) is the real risk indicator.
2.5 Balderton Capital — Track Record
Who they are: London-based multi-stage VC, founded 2000 as Benchmark Capital Europe, independent since 2007. ~$7B total assets. One of the four biggest VCs in London. In August 2024 they raised $1.3B (Early Stage Fund IX $615M + Growth Fund II $685M) — the largest raise for a European VC at the time.
Notable successes: Betfair ($2B IPO), Bebo ($850M to AOL), Depop ($1.65B to Etsy), MySQL ($1B to Sun), Darktrace ($3.5B FTSE IPO), Revolut, Recorded Future ($780M), NaturalMotion (to Zynga). Strong track record on exits.
Notable failures / controversies:
- Wonga (UK payday lender) — Balderton + Accel backed Wonga, which was attacked for predatory lending, forced to write off 330,000 customers’ loans, and collapsed in 2018. Balderton + Accel injected a £10M emergency lifeline just so Wonga could pay compensation claims. (The Guardian, FT, TechCrunch, Business Insider all covered this.)
- Setanta Sports (liquidated).
- VanMoof (e-bike company, went bankrupt 2023) — Colin Hanna is named on Balderton’s page as working with VanMoof.
Investment thesis (2024-2025): Heavily AI-tilted. Portfolio now includes Wayve (autonomous driving AI), Writer ($200M Series C, $1.9B valuation), Light (AI finance), Escape (AI security), Proxima Fusion, Quantum Systems. European AI startups now account for ~18% of all European VC funding, and Balderton is actively chasing this cycle. TechCrunch notes European VCs (Balderton included) are criticized for “Europe’s AI misses” — pressure to not miss the AI wave, which incentivizes AI-tilted investing.
Board practices: Balderton publishes a board-practices playbook and takes board seats as standard for lead-investor deals. A board seat is a contractual right that generally cannot be removed without the VC’s consent.
No smoking-gun article was found alleging Balderton forced an AI pivot or removed a founder at a portfolio company. The pattern is structural pressure (growth expectations, board presence, AI-cycle chasing) rather than overt coercion.
PART 3 — The AI-Support Hypothesis (Debunked)
There is a recurring rumour that Anytype’s support team uses AI heavily, possibly cited on Hacker News. This hypothesis is not supported by the evidence.
- Anytype’s official support is a human email desk (
[email protected], 24-hour SLA peranytype.io/faq) backed by a human-moderated Discourse forum. Team membersanton,kaye,Filip,sambouwer,Dariia,Romanreply personally. - No AI support chatbot, ticket-deflection bot, or Intercom/Zendesk AI agent is documented anywhere — not in their FAQ, not in the community forum, not on HN, not on Reddit.
- The only “bots” on the forum are standard Discourse plumbing: an auto-close system bot and an
@AnyFriendshelper account (which a team member clarified is “just a bot, no human will ever get notified if you reply to them”).
What the research did surface is a different but related issue: Anytype has been shipping AI as a product feature (an in-app assistant called “AI Ally”/“Bobrick” + an MCP server for external LLMs), and that draws heavy community criticism:
- Forum thread “DO NOT Waste Time on AI” — 246 likes, 94 posts, 3,107 views.
- Forum thread “AI Assistant” (2023 feature request) — 431 likes, 112 posts, 9,159 views. Top critical comment (21 likes): “Just want to voice my support to NOT implement AI into Anytype… Besides it being ridiculously overhyped, there are real issues with data privacy and copyright that go against what Anytype stands for.”
- Reddit: “Can we please all tell them to stop forcing AI?”
- The recurring theme from critics: AI work is prioritized over critical fundamentals (mobile feature parity, cross-Space search, the editor, CJK input bugs, find-and-replace which sat unaddressed for 3+ years).
The general “VC pressures startups to replace human support with AI” trend is real and documented (Crunchbase: VCs poured hundreds of millions into customer-service AI startups in 2024-2025; Salesforce cut ~4,000 customer-service roles; CNBC reports consumers rank AI customer service among the worst for convenience). But Anytype is not a documented instance of it. The criticism of Anytype + AI is about product AI, not support AI.
PART 4 — The Broader VCware / AI-Washing Pattern
Steph Ango (Obsidian’s CEO) coined “vcware” in his essay at stephango.com/vcware. The core thesis, verbatim:
“VCware is built with a five year horizon, it is not built to live on for decades… In the short term, VCware tends to subsidize pricing to acquire users… But this generally comes at the cost of hoarding user data, and locking in customers… To keep raising money, VCware startups must paint an increasingly enormous vision of their future, which becomes impossible to live up to. This leads to increasingly disparate priorities that gradually make the product worse. What starts off as a useful app becomes burdened with crap. Eventually all VCware must exit.”
The “AI-washing” phenomenon is now well-documented:
- Built In: “AI feature creep — adding AI tools without clear user value — can bloat products, waste resources and erode engagement.”
- RM Magazine (Jan 2026): “Criminally Overhyped: The Risks of AI Washing” — notes SEC’s first AI-washing enforcement actions (March 2024).
- CNBC: Microsoft VC’s warning about dubious AI usage claims from companies.
- PitchBook Q4 2024: AI companies received 50.8% of global VC funding.
- Mintz: AI company funding exceeded $100B in 2024.
Anytype’s symptoms match the vcware pattern:
Subsidize-then-squeeze (1 GB → 100 MB free tier)
Expanding roadmap into new verticals (chat, AI, publishing) while core bugs persist
Board seat held by growth-focused VC partner
Feature-velocity prioritized over depth (CJK bugs, find-and-replace, export reliability — all documented in this conversation’s two bug reports)
But Anytype also has counter-signals that distinguish it from pure vcware:
End-to-end encryption means the company cannot monetize user data even if pressured
MIT-licensed core protocol is genuinely forkable
Founders publicly state the goal is to reduce VC dependence via paid membership
Colin Hanna left Balderton in Aug 2025, reducing day-to-day VC influence
The “Any Association” structure gives users a credible exit path (export + fork)
PART 5 — Direction Indicator
Healthy signals
- E2E encryption is real and verified. User content is cryptographically inaccessible to Anytype, investors, or any future acquirer. This is the strongest structural protection.
- Core protocol is MIT. The
any-synclayer is genuinely open. An acquirer cannot re-close it. A community fork is legally and technically possible. - Founders retain voting control today and publicly commit to reducing VC dependence.
- Local-first architecture means users hold their data. Export (when it works — see the export bug) produces a real, portable copy.
- Colin Hanna’s departure from Balderton (Aug 2025) reduces active VC steering.
Unhealthy signals
- Telemetry is on by default with no desktop toggle — contradicts the sovereignty brand, especially in Local-only mode.
- Firebase dependency on Android — Google sees your push token even in Local-only mode.
- “Any Source Available License” is marketed as “open” but is not OSI-approved. Commercial forks need association consent.
- 90% free-tier cut matches the vcware squeeze pattern.
- Chat/AI roadmap prioritized over core bug fixes — find-and-replace unaddressed for 3+ years, CJK input bugs, export silently dropping files (documented in this conversation), local-only mode broken offline (documented in this conversation).
- The association is governed by the same people who sit on the VC-backed operating company’s board — the “firewall” is licensing leverage, not independent governance.
- No legal mechanism prevents a future majority from approving a sale. A Series B would dilute founder voting power (kaye’s own admission).
Overall assessment: CAUTIONARY — Monitor Closely
Anytype is not yet vcware, but it is exhibiting early vcware symptoms. The next 18-24 months are the critical window. Watch for:
- Series B announcement — this is the single clearest inflection point. If Anytype raises again, founder voting control erodes and the vcware trajectory hardens.
- License migration to full MIT — if the apps move to MIT as promised, the sovereignty guarantee becomes real. If this stays “coming soon” indefinitely, the source-available license remains a lever.
- Telemetry toggle added — a genuine privacy-first product would let users opt out of telemetry. If this never ships, the sovereignty marketing is hollow.
- Bug-fix-to-feature ratio — if chat/AI/publishing continue to dominate releases while export, local-only offline, and CJK bugs persist, the priorities are misaligned.
- Colin Hanna’s next move — if he transitions fully out of the board, VC influence drops further. If a new Balderton partner takes his seat, influence returns.
The honest answer: Anytype today is a privacy-respecting product with real cryptographic guarantees, built by founders who genuinely seem to want independence, operating inside a governance structure that is better than a pure VC startup but worse than a foundation. The structure can survive founder turnover or investor pressure only if the MIT migration completes and the telemetry toggle ships. Until then, treat Anytype as “trustworthy but monitor closely” — encrypt your data, keep local exports (when the export bug is fixed), and be prepared to fork if the signals turn negative.
PART 6 — Tarot Reading
I randomized a Major Arcana card
Card Drawn: The Tower (XVI) — Upright
Keywords: sudden change, upheaval, chaos, destruction, dramatic change, revelation, awakening, loss and ruin, new start, unexpected events, foundational change.
Traditional meaning: The Tower is the card of abrupt, unavoidable disruption. A lightning bolt of clarity cuts through lies, illusions, and false assumptions a structure was built on, and the truth is exposed. Whatever was constructed on shaky foundations comes crashing down. You cannot escape it; the only path is to surrender to the collapse and let the old structure self-destruct so something real can take its place.
In a career/business/finance context: Expect sudden disruption, forced restructuring, or a wake-up call. The mess is often temporary and clears the way for a more stable, authentic organization long-term — but only if you do not resist the change.
The transformative aspect: The destruction is not punishment but necessity. Old foundations must be replaced with something more genuine. Growth, enlightenment, and a new perspective follow.
Advice: Do not resist or deny the change. If you are self-aware, you may see the cracks forming and transform before forced collapse. Let the false structure fall, then rebuild on truth.
Application to Anytype
The Tower upright maps cleanly onto Anytype’s situation. The current structure — a VC-backed operating company sitting alongside a non-profit association, with a source-available license, always-on telemetry, and a roadmap tilted toward chat/AI while core bugs persist — is built on partially shaky foundations. The “lightning bolt” could take several forms: a Series B with dilutive terms, a community fork triggered by a governance dispute, a security incident that exposes the telemetry gap, or a strategic pivot that breaks the trust of the privacy-first user base.
The card’s counsel is not that collapse is inevitable, but that clinging to the compromised structure makes the eventual collapse worse. The healthy path is to proactively dismantle the unstable elements — ship the MIT migration, add the telemetry toggle, fix the export and local-only bugs, resist the chat/AI feature bloat — before an external force imposes the change. The chaos of the Tower is the mechanism by which a more authentic product emerges. Anytype’s founders have the agency to choose whether that transformation is voluntary or forced.
The Tower does not say “Anytype will fail.” It says “the structure as it currently exists will not survive unchanged, and the sooner that is accepted, the better the rebuild.”
Sources
Code (directly audited): anytype-heart (metrics/service.go, core/metrics.go, pkg/lib/initialparams/initialparams.go, pb/protos/commands.proto, core/files/, space/spacecore/localdiscovery/) · anytype-ts (src/ts/lib/analytics.ts, src/ts/lib/api/command.ts, src/ts/app.tsx, src/json/constant.ts) · anytype-kotlin (analytics/, AndroidApplication.kt, DeviceTokenStoringServiceImpl.kt, app/build.gradle, network_security_config.xml)
Forum & community: Balderton Capital, VCware, and Anytype’s Future · DO NOT Waste Time on AI · AI Assistant · Please give us a way to turn AI integration off completely if you're going to add it · https://www.reddit.com/r/Anytype/comments/1tqz1tx/can_we_please_all_tell_them_to_stop_forcing_ai
Funding & governance: https://blog.anytype.io/anytype-raises-13-4million-usd-funding · Anytype announces $13.4 million round following launch of open Beta - Balderton Capital · The anthesis web: Anytype raises $13.4M to restore the Internet - Tech.eu · https://blog.anytype.io/our-open-philosophy · https://legal.any.coop · Any in Zug - Reports | Moneyhouse · Balderton Capital - Wikipedia · Euro VCs welcome Balderton's fresh $1.3B but grumble about Europe's AI misses | TechCrunch
Balderton controversies: Private equity firms behind expansion of Wonga.com | Wonga | The Guardian · Wonga investors inject £10M so cash-strapped payday lender can fund claims | TechCrunch · Awkward Silence As Top European VCs Are Asked About Failures at Wonga - Business Insider
VCware / AI-washing pattern: 100% user-supported — Steph Ango · How to Beat AI Feature Creep and Build Products That Truly Matter | Built In · AI washing: A Microsoft VC's warning about dubious, and rising, corporate artificial intelligence claims · Risk Management Magazine - Criminally Overhyped: The Risks of AI Washing · VCs Put Customer Service AI On Speed Dial · 'I hate customer-service chatbots': The consumer-AI refund relationship is off to a rocky start
Tarot: https://www.biddytarot.com/tarot-card-meanings/major-arcana/tower/ · https://www.trustedtarot.com/card-meanings/the-tower/ · https://www.labyrinthos.co/blogs/tarot-card-meanings-list/tower-meaning-major-arcana-tarot-card-meanings
Colin Hanna: colin daymond hanna - Earendil | LinkedIn · Get to know Balderton’s Colin Daymond Hanna, our first Partner outside London | Balderton Capital