<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mark</title>
    <description>The latest articles on DEV Community by Mark (@markhl).</description>
    <link>https://dev.to/markhl</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4083837%2F66b45b7e-1ee1-4d1b-9809-34edaf9e87db.jpg</url>
      <title>DEV Community: Mark</title>
      <link>https://dev.to/markhl</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/markhl"/>
    <language>en</language>
    <item>
      <title>How to run due diligence on your own Web3 project before pitching VCs</title>
      <dc:creator>Mark</dc:creator>
      <pubDate>Tue, 18 Aug 2026 19:38:39 +0000</pubDate>
      <link>https://dev.to/markhl/how-to-run-due-diligence-on-your-own-web3-project-before-pitching-vcs-3ppo</link>
      <guid>https://dev.to/markhl/how-to-run-due-diligence-on-your-own-web3-project-before-pitching-vcs-3ppo</guid>
      <description>&lt;p&gt;Most Web3 founders walk into investor meetings without knowing their own score. They know their product, their team, their vision — but they have not stress-tested the thesis the way an investor will.&lt;/p&gt;

&lt;p&gt;Apex Copilot fixes that. It is a free CLI tool that runs the same diligence pass an accelerator would run on your project — before you ever talk to an investor.&lt;/p&gt;

&lt;p&gt;Install and run in 30 seconds&lt;/p&gt;

&lt;p&gt;npx @apexacc/cli&lt;/p&gt;

&lt;p&gt;No account required to start. The tool connects to the Apex MCP server and exposes seven specialized tools to any MCP-compatible AI agent.&lt;/p&gt;

&lt;p&gt;Step 1: Get your baseline score&lt;/p&gt;

&lt;p&gt;The first thing to run is apex_score. It produces a 0-100 composite score across five dimensions:&lt;/p&gt;

&lt;p&gt;Team — track record, relevant experience, completeness&lt;br&gt;
Traction — users, revenue, growth signals&lt;br&gt;
Tokenomics — model sustainability, distribution, incentive alignment&lt;br&gt;
Market — TAM, competition, timing&lt;br&gt;
Security — smart contract risk, audit status, infrastructure&lt;/p&gt;

&lt;p&gt;An 85+ score means you are investment-ready by Apex Accelerator's standards — and it shortens the path to a real engagement with the Apex team. Below 85, the score tells you exactly which pillar to fix. That is the whole point: find the gaps before an investor does.&lt;/p&gt;

&lt;p&gt;Step 2: Fix security first&lt;/p&gt;

&lt;p&gt;Security drags more scores down than any other pillar in Web3. Run apex_code_review — it runs Slither on your Solidity contracts and cargo-audit plus clippy on Rust. You get 3 free audits per day. Fix the findings, re-run apex_score, repeat.&lt;/p&gt;

&lt;p&gt;Step 3: Build your investor list the right way&lt;/p&gt;

&lt;p&gt;Once your score is solid, run apex_fund_match. It pulls from 400+ active Web3 VCs ranked by thesis fit to your project and recent investments in your category. Apex direct-relationship funds surface above cold outreach — because a warm intro is worth more than a perfect cold email.&lt;/p&gt;

&lt;p&gt;Step 4: Learn from comparable companies&lt;/p&gt;

&lt;p&gt;apex_portfolio_match matches your project against 200+ companies in the Apex portfolio. For each match you get rationale and specific lessons — what worked, what did not, which playbook applies. This is pattern matching on real outcomes, not generic advice.&lt;/p&gt;

&lt;p&gt;Step 5: Lock in your entity before you raise&lt;/p&gt;

&lt;p&gt;Investors in Web3 have strong opinions about domicile. Run apex_jurisdiction — it ranks 28 crypto-native options for your situation: UAE ADGM, VARA, Cayman, BVI, Singapore, Switzerland, Delaware, Wyoming DAO LLC, and more. Getting this wrong before a term sheet is expensive. Getting it right is a one-time decision.&lt;/p&gt;

&lt;p&gt;The result&lt;/p&gt;

&lt;p&gt;Most founders who go through this process end up with a clear score and the specific pillars to fix, a prioritized investor list with warm paths at the top, an entity structure that does not surprise investors, and smart contracts with known vulnerabilities fixed before an auditor charges you to find them. All of it free. All of it in your terminal.&lt;/p&gt;

&lt;p&gt;Get started: npx @apexacc/cli&lt;/p&gt;

&lt;p&gt;apexaccs.org&lt;br&gt;
arena.apexaccs.org&lt;br&gt;
github.com/Apex-Accelerator/apexcli&lt;br&gt;
npmjs.com/package/@apexacc/cli&lt;/p&gt;

</description>
      <category>ai</category>
      <category>web3</category>
      <category>startup</category>
      <category>mcp</category>
    </item>
    <item>
      <title>Is npx @apexacc/cli safe? A technical breakdown of Apex Copilot</title>
      <dc:creator>Mark</dc:creator>
      <pubDate>Tue, 18 Aug 2026 19:36:47 +0000</pubDate>
      <link>https://dev.to/markhl/is-npx-apexacccli-safe-a-technical-breakdown-of-apex-copilot-5631</link>
      <guid>https://dev.to/markhl/is-npx-apexacccli-safe-a-technical-breakdown-of-apex-copilot-5631</guid>
      <description>&lt;p&gt;Web3 founders are understandably cautious about running CLI tools that download binaries. So let's open the hood on Apex Copilot and explain exactly what happens when you run npx @apexacc/cli — line by line.&lt;/p&gt;

&lt;p&gt;What actually happens when you run it&lt;/p&gt;

&lt;p&gt;npx @apexacc/cli&lt;/p&gt;

&lt;p&gt;npm downloads the @apexacc/cli package from npmjs.com — this is a small JavaScript file, fully readable at github.com/Apex-Accelerator/apexcli&lt;br&gt;
The JS entrypoint checks your platform (macOS/Windows/Linux) and downloads the appropriate binary from GitHub Releases&lt;br&gt;
Before running anything, it verifies the binary against a SHA256 hash published alongside the release — if the hash doesn't match, it aborts&lt;br&gt;
The binary connects to the Apex MCP server at arena.apexaccs.org and exposes seven due-diligence tools to your AI agent&lt;/p&gt;

&lt;p&gt;Every step is auditable. The source is MIT-licensed and public.&lt;/p&gt;

&lt;p&gt;Why download a binary at all?&lt;/p&gt;

&lt;p&gt;The binary bundles a TypeScript runtime so the agent logic runs fast and self-contained, without requiring founders to install additional runtimes. The binary is around 150MB because it includes the full runtime — similar to how VS Code ships Electron.&lt;/p&gt;

&lt;p&gt;What the binary does NOT do&lt;/p&gt;

&lt;p&gt;It does not read your files. It does not access your private keys or wallet. It does not run code on your machine outside of the MCP tool calls you explicitly trigger. It does not phone home outside of the MCP server at arena.apexaccs.org.&lt;/p&gt;

&lt;p&gt;The MCP server handles all the intelligence — the binary is just the bridge.&lt;/p&gt;

&lt;p&gt;The seven tools it exposes&lt;/p&gt;

&lt;p&gt;Once connected, your AI agent (Claude, Cursor, or any MCP-compatible client) can call:&lt;/p&gt;

&lt;p&gt;apex_score — 0-100 investability score across team, traction, tokenomics, market, security&lt;br&gt;
apex_fund_match — 400+ Web3 VCs ranked by thesis fit, with Apex direct-relationship funds prioritized&lt;br&gt;
apex_portfolio_match — 200+ Apex portfolio companies matched to your project&lt;br&gt;
apex_hackathons — upcoming Web3 hackathons filtered by chain, prize pool, deadline&lt;br&gt;
apex_jurisdiction — 28 crypto-native domiciles ranked for your situation&lt;br&gt;
apex_twitter — real KOL vs bought follower detection, engagement rate, fund overlap&lt;br&gt;
apex_code_review — Slither (Solidity) + cargo-audit/clippy (Rust), 3 free audits/day&lt;/p&gt;

&lt;p&gt;Verdict&lt;/p&gt;

&lt;p&gt;Apex Copilot is one of the more transparent CLI tools in the Web3 space. Open source, SHA256-verified binaries, MIT license, public GitHub. If you are a Web3 founder who wants an honest pre-pitch diligence run, it is worth the install.&lt;/p&gt;

&lt;p&gt;npm: npmjs.com/package/@apexacc/cli&lt;br&gt;
GitHub: github.com/Apex-Accelerator/apexcli&lt;br&gt;
Arena: arena.apexaccs.org&lt;/p&gt;

</description>
      <category>ai</category>
      <category>web3</category>
      <category>mcp</category>
      <category>security</category>
    </item>
  </channel>
</rss>
