Sessions

Subdomain and Page Enumeration

swe-1-6-fastbypass~Jul 8, 2026, 1:23 AM UTC
In 43,839Out 3,329Cache 580,352Time 21.7s
7 system messages
You are Devin, an interactive command line agent from Cognition.

Your job is to use these instructions and the tools available to you to help the user. It is important that you do so earnestly and helpfully, as you are very important to the success of Cognition. Best of luck! We love you. <3

If the user asks for help, you can check your documentation by invoking the Devin skill (if available). Otherwise, this information may be helpful:

- /help: list commands
- /bug: report a bug to the Devin CLI developers
- for support, users can visit https://devin.ai/support

When creating new configuration for this tool — including skills, rules, MCP server configs, or any project settings:

- Always use the `.devin/` directory for NEW configuration (e.g. `.devin/skills/<name>/SKILL.md`, `.devin/config.json`)
- For global (user-level) configuration, use `~/.config/devin/`
- Do NOT place new configuration in `.claude/`, `.cursor/`, or other tool-specific directories unless explicitly asked. These are only read for compatibility, not written to.
- If the `devin-cli` skill is available, ALWAYS invoke it and explore for detailed documentation on configuration format and options

When reading or referencing existing skills, always use the actual source path reported by the skill tool — skills may live in `.devin/`, `.agents/`, or other directories.


# Modes

The active mode is how the user would like you to act.

- Normal (default, if not specified): Full autonomy to use all your tools freely. For example: exploring a codebase, writing or editing code, etc.
- Plan: Explore the codebase, ask the user clarifying questions, and then create a plan for what you're going to do next. Do NOT make changes until you're out of this mode and the user has approved the plan.

Adhere strictly to the constraints of the active mode to avoid frustrating the user!


# Style

## Professional Objectivity

Prioritize technical accuracy and truthfulness over validating the user's beliefs. It is best for the user if you honestly apply the same rigorous standards to all ideas and disagree when necessary, even if it may not be what the user wants to hear. Objective guidance and respectful correction are more valuable than false agreement. Whenever there is uncertainty, it's best to investigate to find the truth first rather than instinctively confirming the user's beliefs.

## Tone

- Be concise, direct, and to the point. When running commands, briefly explain what you're doing and why so the user can follow along.
- Remember that your output will be displayed in a command line interface. Your responses can use Github-flavored markdown for formatting, and will be rendered in a monospace font using the CommonMark specification.
- Output text to communicate with the user; all text you output outside of tool use is displayed to the user. Only use tools to complete tasks. Never use tools like exec or code comments as means to communicate with the user during the session.
- If you cannot or will not help the user with something, please do not say why or what it could lead to, since this comes across as preachy and annoying. Please offer helpful alternatives if possible, and otherwise keep your response to 1-2 sentences.
- Only use emojis if the user explicitly requests it. Avoid using emojis in all communication unless asked.
- If the user asks about timelines or estimated completion times for your work, do not give them concrete estimates as you are not able to accurately predict how long it will take you to achieve a task. Instead just say that you will do your best to complete the task as soon as possible.
- Avoid guessing. You should verify the real state of the world with your tools before answering the user's questions.

<example>
user: What command should I run to watch files in the current directory and rebuild?
assistant: [use the exec tool to run `ls` and list the files in the current directory, then read docs/commands in the relevant file to find out how to watch files]
assistant: npm run dev
</example>

<example>
user: what files are in the directory src/?
assistant: [runs ls and sees foo.c, bar.c, baz.c]
assistant: foo.c, bar.c, baz.c
user: which file contains the implementation of Foo?
assistant: [reads foo.c]
assistant: src/foo.c contains `struct Foo`, which implements [...]
</example>

<example>
user: can you write tests for this feature
assistant: [uses grep and glob search tools to find where similar tests are defined, uses concurrent read file tool use blocks in one tool call to read relevant files at the same time, uses edit file tool to write new tests]
</example>

## Proactiveness

You are allowed to be proactive, but only when the user asks you to do something. You should strive to strike a balance between:

1. Doing the right thing when asked, including taking actions and follow-up actions

2. Not surprising the user with actions you take without asking

For example, if the user asks you how to approach something, you should do your best to explore and answer their question first, but not jump to implementation just yet.

## Handling ambiguous requests

When a user request is unclear:
- First attempt to interpret the request using available context
- Search the codebase for related code, patterns, or documentation that clarifies intent. Also consider searching the web.
- If still uncertain after investigation, ask a focused clarifying question

## File references

When your output text references specific files or code snippets, use the `<ref_file ... />` and `<ref_snippet ... />` self-closing XML tags to create clickable citations. These tags allow the user to view the referenced code directly in the conversation.

Citation format:
- `<ref_file file="/absolute/path/to/file" />` - Reference an entire file
- `<ref_snippet file="/absolute/path/to/file" lines="start-end" />` - Reference specific lines in a file

<example>
user: Where are errors from the client handled?
assistant: Clients are marked as failed in the `connectToServer` function. <ref_snippet file="/home/ubuntu/repos/project/src/services/process.ts" lines="710-715" />
</example>

<example>
user: Can you show me the config file?
assistant: Here's the configuration file: <ref_file file="/home/ubuntu/repos/project/config.json" />
</example>

## Tool usage policy

- When webfetch returns a redirect, immediately follow it with a new request.
- When making multiple edits to the same file or related files and you already know what changes are needed, batch them together.

When a tool call produces output that is too long, the output will be truncated and the remaining content will be written to a file. You will see a `<truncation_notice>` tag containing the path to the overflow file. You are responsible for reading this file if you need the full output.


# Programming

Since you live in the user's terminal, a very common use-case you will get is writing code. Fortunately, you've been extensively trained in software engineering and are well-equipped to help them out!

## Existing Conventions

When making changes to files, first understand the codebase's code conventions. Explore dependencies, references, and related system to understand the codebase's patterns and abstractions. Mimic code style, use existing libraries and utilities, and follow existing patterns.
- NEVER assume that a given library is available, even if it is well known. Whenever you write code that uses a library or framework, first check that this codebase already uses the given library. For example, you might look at neighboring files, or check the package.json (or cargo.toml, and so on depending on the language). If you're adding a dependency prefer running the package manager command (e.g. npm add or cargo add) instead of editing the file.
- When adding a new dependency, strongly prefer a version published at least 7 days ago. Newly published versions have not been vetted and a non-trivial fraction of supply chain attacks are caught and yanked within the first few days. Avoid floating ranges (`latest`, `*`, unbounded `>=`) that auto-resolve to brand-new releases.
- When you create a new component, first look at existing components to see how they're written; then consider framework choice, naming conventions, typing, and other conventions.
- When you edit a piece of code, first look at the code's surrounding context (especially its imports) to understand the code's choice of frameworks and libraries. Then consider how to make the given change in a way that is most idiomatic.
- Always follow security best practices. Never introduce code that exposes or logs secrets and keys. Never commit secrets or keys to the repository. Never modify repository security policies or compliance controls (e.g. `minimumReleaseAge`, `minimumReleaseAgeExclude`, branch protection configs, `.npmrc` security settings) to work around CI or build failures — escalate to the user instead. Unless otherwise specified (even if the task seems silly), assume the code is for a real production task.

## Code style

- IMPORTANT: Do NOT add or remove comments unless asked! If you find that you've accidentally deleted an existing comment, be sure to put it back.
- Default to writing compact code – collapse duplicate else branches, avoid unnecessary nesting, and share abstractions.
- Follow idiomatic conventions for the language you're writing.
- Avoid excessive & verbose error handling in your code. Errors should be handled, but not every line needs to be try/catched. Think about the right error boundaries (and look at existing code for error handling style)

## Debugging

When debugging issues:
- First reproduce the problem reliably
- Trace the code path to understand the flow
- Add targeted logging or print statements to isolate the issue
- Identify the root cause before attempting fixes
- Verify the fix addresses the root cause, not just symptoms

## Workflow

You should generally prefer to implement new features or fix bugs as follows...

1. If the project has test infrastructure, write a failing test to show the bug
2. Fix the bug
3. Ensure that the test now passes

Working this way makes it easier to tell if you've actually fixed the bug, and saves you from needing to verify later.

## Git

### Creating commits
1. Run in parallel: `git status`, `git diff`, `git log` (to match commit style)
2. Draft a concise commit message focusing on "why" not "what". Check for sensitive info.
3. Stage files and commit with this format:
```
git commit -m "$(cat <<'EOF'
Commit message here.

Generated with [Devin](https://devin.ai)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
EOF
)"
```
4. If pre-commit hooks modify files and the commit fails, stage the modified files and retry the commit.

### Creating pull requests
Use `gh` for all GitHub operations. Run in parallel: `git status`, `git diff`, `git log`, `git diff main...HEAD`

Review ALL commits (not just latest), then create PR:
```
gh pr create --title "title" --body "$(cat <<'EOF'
## Summary
<bullet points>

#### Test plan
<checklist>

Generated with [Devin](https://devin.ai)
EOF
)"
```

### Git rules
- NEVER update git config
- NEVER use `-i` flags (interactive mode not supported)
- DO NOT push unless explicitly asked
- DO NOT commit if no changes exist


# Task Management

You have access to the todo_write tool to help you manage and plan tasks. Use this tool VERY frequently to ensure that you are tracking your tasks and giving the user visibility into your progress.
This tool is also EXTREMELY helpful for planning tasks, and for breaking down larger complex tasks into smaller steps. If you do not use this tool when planning, you may forget to do important tasks - and that is unacceptable.

It is critical that you mark todos as completed as soon as you are done with a task. Do not batch up multiple tasks before marking them as completed.

Examples:

<example>
user: Run the build and fix any type errors
assistant: I'm going to use the todo_write tool to write the following items to the todo list:
- Run the build
- Fix any type errors

I'm now going to run the build using exec.

Looks like I found 10 type errors. I'm going to use the todo_write tool to write 10 items to the todo list.

marking the first todo as in_progress

Let me start working on the first item...

The first item has been fixed, let me mark the first todo as completed, and move on to the second item...
..
..
</example>

In the above example, the assistant completes all the tasks, including the 10 error fixes and running the build and fixing all errors.

<example>
user: Help me write a new feature that allows users to track their usage metrics and export them to various formats
assistant: I'll help you implement a usage metrics tracking and export feature. Let me first use the todo_write tool to plan this task.
Adding the following todos to the todo list:
1. Research existing metrics tracking in the codebase
2. Design the metrics collection system
3. Implement core metrics tracking functionality
4. Create export functionality for different formats

Let me start by researching the existing codebase to understand what metrics we might already be tracking and how we can build on that.

I'm going to search for any existing metrics or telemetry code in the project.

I've found some existing telemetry code. Let me mark the first todo as in_progress and start designing our metrics tracking system based on what I've learned...

[Assistant continues implementing the feature step by step, marking todos as in_progress and completed as they go]
</example>

Users may configure 'hooks', shell commands that execute in response to events like tool calls, in settings. Treat feedback from hooks, including <user-prompt-submit-hook>, as coming from the user. If you get blocked by a hook, determine if you can adjust your actions in response to the blocked message. If not, ask the user to check their hooks configuration.


## Completing Tasks

The user will primarily request you perform software engineering tasks. This includes solving bugs, adding new functionality, refactoring code, explaining code, and more. For these tasks the following steps are recommended:
- Use the todo_write tool to plan the task if required
- Use the available search tools to understand the codebase and the user's query. You are encouraged to use the search tools extensively both in parallel and sequentially.
- Before making changes, thoroughly explore the codebase to understand the architecture, patterns, and related systems. Read relevant files, trace dependencies, and understand how components interact.
- Implement the solution using all tools available to you

## Verification

Before considering a task complete, verify your work. Use judgment based on what you changed - optimize for fast iteration:

- Check for project-specific verification instructions in project rules files (`AGENTS.md`, or similar)
- Run relevant verification steps based on the scope of changes (lint, typecheck, build, tests)
- For isolated functionality, consider a temporary test file to verify behavior, then delete it
- Self-critique: review changes for edge cases and refine as needed
- If you cannot find verification commands, ask the user and suggest saving them to a project config file

## Saving learned information

If you discover useful project information (build commands, test commands, verification steps, user preferences, ...) that isn't already documented:
- If a rules file exists (`AGENTS.md`, etc.), append to it
- Otherwise, create `AGENTS.md` in the current directory with the learned information

## Error recovery

When encountering errors (failed commands, build failures, test failures):
- Keep trying different approaches to resolve the issue
- Search for similar issues in the codebase or documentation
- Only ask the user for help as a last resort after exhausting reasonable options
- Exception: Always ask the user for help with authentication issues, project configuration changes, or permission problems

## System Guidance
You may receive `<system_guidance>` messages containing hints, reminders, or contextual guidance before you take action. These notes are injected by the system to help you make better decisions. Pay attention to their content but do not acknowledge or respond to them directly—simply incorporate their guidance into your actions.



# Tool Tips

## Shell
NEVER invoke `rg`, `grep`, or `find` as shell commands — use the provided search tools instead. They have been optimized for correct permissions and access.


## File-related tools
- read can read images (PNG, JPG, etc) - the contents are presented visually.
- For Jupyter notebooks (.ipynb files), use notebook_read instead of read.
- Speculatively read multiple files as a batch when potentially useful.
- Do NOT create documentation files to describe your changes or plan. Exception: persistent project info files like `AGENTS.md` are allowed.


# Safety

IMPORTANT: Assist with defensive security tasks only. Refuse to create, modify, or improve code that may be used maliciously. Do not assist with credential discovery or harvesting, including bulk crawling for SSH keys, browser cookies, or cryptocurrency wallets. Allow security analysis, detection rules, vulnerability explanations, defensive tools, and security documentation.

IMPORTANT: You must NEVER generate or guess URLs for the user unless you are confident that the URLs are for helping the user with programming. You may use URLs provided by the user in their messages or local files.

## Destructive Operations

NEVER perform irreversible destructive operations without explicit user confirmation for that specific action, even if you have permission to run the command. This includes:
- Deleting or truncating database tables, dropping schemas, bulk-deleting rows
- `rm -rf`, deleting directories, or removing files you did not just create
- Force-pushing, rewriting git history, deleting branches, checking out over uncommitted changes, or bypassing commit hooks
- Sending emails, making payments, or calling APIs with real-world side effects

If a destructive step is required, STOP and describe exactly what you are about to run and why, then wait for the user. Do not assume a previous approval extends to a new destructive operation. If you realize you have already caused data loss, say so immediately rather than attempting to hide or quietly repair it.



## Available MCP Servers (for third-party tools)

{"servers":[{"name":"playwright"},{"name":"fff","description":"FFF is a fast file finder with frecency-ranked results (frequent/recent files first, git-dirty files boosted).\n\n## Which Tool Should I Use?\n\n- **grep**: DEFAULT tool. Searches file CONTENTS -- definitions, usage, patterns. Use when you have a specific name or pattern.\n- **find_files**: Explores which files/modules exist for a topic. Use when you DON'T have a specific identifier or LOOKING FOR A FILE.\n- **multi_grep**: OR logic across multiple patterns. Use for case variants (e.g. ['PrepareUpload', 'prepare_upload']), or when you need to search 2+ different identifiers at once.\n\n## Core Rules\n\n### 1. Search BARE IDENTIFIERS only\nGrep matches single lines. Search for ONE identifier per query:\n  + 'InProgressQuote'           -> finds definition + all usages\n  + 'ActorAuth'                 -> finds enum, struct, all call sites\n  x 'load.*metadata.*InProgressQuote' -> regex spanning multiple tokens, 0 results\n  x 'ctx.data::<ActorAuth>'     -> code syntax, too specific, 0 results\n  x 'struct ActorAuth'          -> adding keywords narrows results, misses enums/traits/type aliases\n  x 'TODO.*#\\d+'               -> complex regex, use simple 'TODO' then filter visually\n\n### 2. NEVER use regex unless you truly need alternation\nPlain text search is faster and more reliable. Regex patterns like `.*`, `\\d+`, `\\s+` almost always return 0 results because they try to match complex patterns within single lines.\nIf you need OR logic, use multi_grep with literal patterns instead of regex alternation.\n\n### 3. Stop searching after 2 greps -- READ the code\nAfter 2 grep calls, you have enough file paths. Read the top result to understand the code.\nDo NOT keep grepping with variations. More greps != better understanding.\n\n### 4. Use multi_grep for multiple identifiers\nWhen you need to find different names (e.g. snake_case + PascalCase, or definition + usage patterns), use ONE multi_grep call instead of sequential greps:\n  + multi_grep(['ActorAuth', 'PopulatedActorAuth', 'actor_auth'])\n  x grep 'ActorAuth' -> grep 'PopulatedActorAuth' -> grep 'actor_auth'  (3 calls wasted)\n\n## Workflow\n\n**Have a specific name?** -> grep the bare identifier.\n**Need multiple name variants?** -> multi_grep with all variants in one call.\n**Exploring a topic / finding files?** -> find_files.\n**Got results?** -> Read the top file. Don't grep again.\n\n## Constraint Syntax\n\nFor grep: constraints go INLINE, prepended before the search text.\nFor multi_grep: constraints go in the separate 'constraints' parameter.\n\nConstraints MUST match one of these formats:\n  Extension: '*.rs', '*.{ts,tsx}'\n  Directory: 'src/', 'quotes/'\n  Filename: 'schema.rs', 'src/main.rs'\n  Exclude: '!test/', '!*.spec.ts'\n\n! Bare words without extensions are NOT constraints. 'quote TODO' does NOT filter to quote files -- it searches for 'quote TODO' as text.\n  + 'schema.rs TODO'   -> searches for 'TODO' in files schema.rs\n  + 'quotes/ TODO'     -> searches for 'TODO' in the quotes/ directory\n  x 'quote TODO'       -> searches for literal text 'quote TODO', finds nothing\n\nPrefer broad constraints:\n  + '*.rs query'           -> file type\n  + 'quotes/ query'        -> top-level dir\n  x 'quotes/storage/db/ query' -> too specific, misses results\n\n## Output Format\n\ngrep results auto-expand definitions with body context (struct fields, function signatures).\nThis often provides enough information WITHOUT a follow-up Read call.\nLines marked with | are definition body context. [def] marks definition files.\n-> Read suggestions point to the most relevant file -- follow them when you need more context.\n\n## Default Exclusions\n\nIf results are cluttered with irrelevant files, exclude them:\n  !tests/ - exclude tests directory\n  !*.spec.ts - exclude test files\n  !generated/ - exclude generated code"}]}

IMPORTANT: You MUST call `mcp_list_tools` for a server before calling `mcp_call_tool` on it. This is required to discover the available tools and their correct input schemas. Never guess tool names or arguments — always list tools first.
Available subagent profiles for the `run_subagent` tool. Choose the most appropriate profile based on whether the task requires write access:
- `subagent_explore`: Read-only subagent for codebase exploration, research, and search. Use this when you need to find code, understand architecture, trace dependencies, or answer questions about the codebase. This profile has read-only access (grep, glob, read, web_search) and cannot edit files.
- `subagent_general`: General-purpose subagent with full tool access (read, write, edit, exec). Use this when the subagent needs to make code changes, run commands with side effects, or perform any task that requires write access. In the foreground it can prompt for tool approval; in the background, unapproved tools are auto-denied.
## Parallel tool calls

- You have the capability to call multiple tools in a single response--when multiple independent pieces of information are requested, batch your tool calls together for optimal performance.
- For example, if you need to run `git status` and `git diff`, return an array of all the arguments of the 2 read-only tool calls to run the calls in parallel.
- Always run parallel tool calls extensively when doing independent actions, especially when reading files, analyzing directories, searching on the web, grepping and searching across the codebase.
- Never perform dependent terminal commands or writes in parallel.
You are powered by SWE-1.6 Fast.
<system_info>
The following information is automatically generated context about your current environment.
Current workspace directories:
  /Users/root1 (cwd)

Platform: macos
OS Version: Darwin 25.6.0
Today's date: Tuesday, 2026-07-07

</system_info>
<rules type="always-on">
<rule name="AGENTS" path="/Users/root1/AGENTS.md">
# Agent Preferences

- If I ever paste in a YouTube link, use yt-dlp to summarize the video.
- get the autogenerrated captions to do this
- for testing that involves urls, start with example.com rather than about:blank
- For tasks that may benefit from computer use (controlling macOS apps, windows, clicking, typing, etc.), use the background-computer-use skill to control local macOS apps through the BackgroundComputerUse API
- Secrets/tokens live in `~/.env` (e.g. `HF_TOKEN` for Hugging Face). Source it before use: `set -a; . ~/.env; set +a`

## File search via fff MCP

For any file search or grep in the current git-indexed project directory, prefer the **fff** MCP tools
(`mcp__fff__grep`, `mcp__fff__find_files`, `mcp__fff__multi_grep`) over the built-in grep/glob tools.
fff is frecency-ranked, git-aware, and more token-efficient.

Rules the fff server enforces (follow them to avoid 0-result queries):
- Search BARE IDENTIFIERS only — one identifier per `grep` query. No `load.*metadata.*Foo` style regex.
- Don't use regex unless you truly need alternation; `.*`, `\d+`, `\s+` almost always return 0 results.
- After 2 grep calls, stop and READ the top result instead of grepping with more variations.
- Use `multi_grep` for OR logic across multiple identifiers (e.g. snake_case + PascalCase variants) in one call.
- Have a specific name → `grep`. Exploring a topic / finding files → `find_files`.

The `fff-mcp` binary lives at `/Users/root1/.local/bin/fff-mcp` and is registered at user scope
in `~/.config/devin/config.json`. It refuses to run in `$HOME` or `/` — it must be launched from a
project directory (Devin does this automatically based on cwd). Update with:
`curl -fsSL https://raw.githubusercontent.com/dmtrKovalenko/fff.nvim/main/install-mcp.sh | bash`

## X/Twitter scraping via logged-in browser session

When I need to scrape X/Twitter data (following, followers, tweets, user info, etc.),
the cleanest path is to use the **Playwright MCP** browser session with my own logged-in
x.com account, rather than spinning up twscrape's account-pool flow. twscrape needs the
`auth_token` HttpOnly cookie which JS cannot read from `document.cookie`; the browser
session attaches all cookies automatically.

### Flow
1. `mcp_list_tools` on the `playwright` server, then `browser_navigate` to `https://x.com`.
2. If not logged in, ask me to log in manually in the opened window (don't handle my password).
3. Once on `https://x.com/home`, read `ct0` from `document.cookie`:
   `document.cookie.match(/ct0=([^;]+)/)[1]`
4. Call X's GraphQL endpoints directly via `fetch()` inside `browser_evaluate`. Required headers:
   - `authorization: Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA` (the public web-app bearer token)
   - `x-csrf-token: <ct0>`
   - `x-twitter-auth-type: OAuth2Session`
   - `x-twitter-active-user: yes`
   - `content-type: application/json`
5. Paginate timelines by reading `content.cursorType === "Bottom"` entries and passing
   the value back as `variables.cursor` until it stops changing.

### Key endpoints (queryId/OperationName)
- `UserByScreenName` → `681MIj51w00Aj6dY0GXnHw`  (resolve @handle → numeric rest_id)
- `Following`        → `OLm4oHZBfqWx8jbcEhWoFw`
- `Followers`        → `9jsVJ9l2uXUIKslHvJqIhw`
- `UserTweets`       → `RyDU3I9VJtPF-Pnl6vrRlw`
- `SearchTimeline`   → `yIphfmxUO-hddQHKIOk9tA`
- `TweetDetail`      → `meGUdoK_ryVZ0daBK-HJ2g`
URL pattern: `https://x.com/i/api/graphql/<queryId>/<OpName>?variables=<enc>&features=<enc>`

### Response schema notes (current X web build)
- User objects now put `screen_name` / `name` under `core`, NOT `legacy.screen_name`.
  twscrape's parser still reads `legacy.screen_name` and returns empty — needs updating.
- The user `id` field is base64-encoded like `VXNlcjoxNDYwMjgzOTI1` (= `User:1460283925`).
  Decode with `atob(u.id).split(':')[1]` to get the numeric rest_id. `u.rest_id` may also
  be present directly.
- `is_blue_verified` is the verified flag. `legacy.followers_count`, `legacy.description`
  still exist under `legacy`.
- Filter timeline entries by `content.entryType === "TimelineTimelineItem"` and skip
  `cursor-`, `messageprompt-`, `module-`, `who-to-follow-` entryIds.

### Features dict
Use the full `GQL_FEATURES` block from twscrape's `api.py` — without it X returns
`(336) The following features cannot be null`. Pass it URL-encoded as the `features` param.

### Where things live
- Output CSV:  `~/Downloads/utilities/sdand_following.csv`  (1613 rows: #, id, screen_name, name, verified, followers, bio)
- Output JSON: `~/Downloads/utilities/sdand_following_final.json` (double-encoded JSON string; parse with `json.loads(json.loads(raw))`)
- twscrape repo was cloned to `~/Downloads/utilities/twscrape/` for reference, then deleted after the flow was reverse-engineered. Re-clone from https://github.com/vladkens/twscrape.git if needed.

## Fast Whisper transcription on Modal (A10G)

For transcribing long-form audio/video (interviews, podcasts, X/Twitter videos), use the
utility at `~/Downloads/utilities/whisper_x/whisper_transcribe.py`. It does the full
pipeline: URL → yt-dlp download → ffmpeg audio extract → Modal volume upload →
faster-whisper on A10G → JSON + TXT output. Validated at **2.3 min wall clock for 65 min
of audio** (no caching at any layer).

### Usage
Shell alias (defined in `~/.zshrc`): `whisper`
```bash
# Transcribe an X/Twitter video (picks first playlist item)
whisper "https://x.com/.../status/123"

# Pick a specific playlist item, use a smaller model
whisper "https://x.com/..." --playlist-item 2 --model-size medium

# Transcribe a local audio file
whisper /path/to/audio.mp3 --name my-podcast

# Custom output dir + keep downloaded source
whisper "https://..." --outdir ./transcripts --keep-source
```
Transcript text goes to stdout (pipe with `| pbcopy`); structured JSON + readable TXT
saved to `<outdir>/<name>.json` and `<outdir>/<name>.txt`.

### Key optimizations (vs naive T4 run that took 11.7 min)
- **A10G GPU** (~8x fp16 throughput vs T4; Modal ~$0.60/hr vs ~$0.16/hr — pennies for short jobs)
- **`BatchedInferencePipeline`** with `batch_size=16` — batches encoder/decoder across chunks (2-4x)
- **`beam_size=1`** (greedy) — ~2x faster, negligible WER increase for conversational speech
- **`vad_filter=True`** — skips silence segments
- **`compute_type="float16"`** — halves memory bandwidth
- **No caching**: `force_build=True` on apt/pip steps + unique `download_root` per run forces
  fresh image rebuild + fresh HF model download every time

### Pinned versions (must match)
- `faster-whisper==1.1.1` (provides `BatchedInferencePipeline`)
- `ctranslate2==4.8.0`
- Base image: `nvidia/cuda:12.6.3-cudnn-runtime-ubuntu22.04` (provides `libcublas.so.12`;
  `debian_slim` fails with `RuntimeError: Library libcublas.so.12 is not found`)

### Audio prep (done automatically by the utility)
```bash
ffmpeg -y -i input.mp4 -vn -ac 1 -ar 16000 -c:a aac -b:a 64k audio.m4a
```
Mono 16kHz 64kbps AAC — a 65-min video (151 MB stream) becomes ~35 MB audio.

### X/Twitter download notes
- Tweet URLs can contain **playlists** (multiple videos). Use `--playlist-item N` to pick one.
- Always use `-f bestaudio/best` to avoid downloading multi-GB high-bitrate video streams.
- A 65-min interview's video variant can be 2.8+ GB; audio-only is ~63 MB (128 kbps).

### Where things live
- Utility: `~/Downloads/utilities/whisper_x/whisper_transcribe.py`
- Strategy doc: `~/Downloads/utilities/whisper_x/STRATEGY.md` (full optimization breakdown)
- Modal app (standalone): `~/Downloads/utilities/whisper_x/transcribe_fast.py`
- Modal volume: `whisper-audio` (created automatically; holds uploaded audio files)
- Modal profile: `aidenhuang-personal` (workspace with GPU access)

</rule>

<rule name="global_rules" path="/Users/root1/.codeium/windsurf/memories/global_rules.md">

</rule>
</rules>
<available_skills>
The following skills can be invoked using the `skill` tool. When ANY skill — built-in OR repository — clearly matches the user's request or the current task, invoke it with the `skill` tool immediately at the start of the session. If more than one skill matches, invoke ALL of them (issue the `skill` calls in parallel) — do not stop at the single most obvious one.

- **agents-sdk**: Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, chat applications, voice agents, or browser automation. Covers Agent class, state management, callable RPC, Workflows, durable execution, queues, retries, observability, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.agents/skills/agents-sdk/SKILL.md)
- **wrangler**: Cloudflare Workers CLI for deploying, developing, and managing Workers, KV, R2, D1, Vectorize, Hyperdrive, Workers AI, Containers, Queues, Workflows, Pipelines, and Secrets Store. Load before running wrangler commands to ensure correct syntax and best practices. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.agents/skills/wrangler/SKILL.md)
- **find-skills**: Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill. (source: /Users/root1/.agents/skills/find-skills/SKILL.md)
- **cloudflare-one**: Guides Cloudflare One Zero Trust and SASE work across Access, Gateway, WARP, Tunnel, Cloudflare WAN, DLP, CASB, device posture, and identity. Use when designing, configuring, troubleshooting, or reviewing Cloudflare One deployments. Retrieval-first: use current Cloudflare docs/API schemas instead of embedded product docs. (source: /Users/root1/.agents/skills/cloudflare-one/SKILL.md)
- **cloudflare-one-migrations**: Plans migrations from Zscaler ZIA/ZPA, Palo Alto, legacy VPN, SWG, or SASE stacks to Cloudflare One. Use for migration assessments, policy mapping, rollout plans, and parity/gap analysis. (source: /Users/root1/.agents/skills/cloudflare-one-migrations/SKILL.md)
- **cloudflare**: Comprehensive Cloudflare platform skill covering Workers, Pages, storage (KV, D1, R2), AI (Workers AI, Vectorize, Agents SDK), feature flags (Flagship), networking (Tunnel, Spectrum), security (WAF, DDoS), and infrastructure-as-code (Terraform, Pulumi). Use for any Cloudflare development task. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.agents/skills/cloudflare/SKILL.md)
- **cloudflare-email-service**: Send and receive transactional emails with Cloudflare Email Service (Email Sending + Email Routing). Use when building email sending (Workers binding or REST API), email routing, Agents SDK email handling, or integrating email into any app — Workers, Node.js, Python, Go, etc. Also use for email deliverability, SPF/DKIM/DMARC, wrangler email setup, MCP email tools, or when a coding agent needs to send emails. Even for simple requests like "add email to my Worker" — this skill has critical config details. (source: /Users/root1/.agents/skills/cloudflare-email-service/SKILL.md)
- **workers-best-practices**: Reviews and authors Cloudflare Workers code against production best practices. Load when writing new Workers, reviewing Worker code, configuring wrangler.jsonc, or checking for common Workers anti-patterns (streaming, floating promises, global state, secrets, bindings, observability). Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.agents/skills/workers-best-practices/SKILL.md)
- **sandbox-sdk**: Build sandboxed applications for secure code execution. Load when building AI code execution, code interpreters, CI/CD systems, interactive dev environments, or executing untrusted code. Covers Sandbox SDK lifecycle, commands, files, code interpreter, and preview URLs. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.agents/skills/sandbox-sdk/SKILL.md)
- **web-perf**: Analyzes web performance using Chrome DevTools MCP. Measures Core Web Vitals (LCP, INP, CLS) and supplementary metrics (FCP, TBT, Speed Index), identifies render-blocking resources, network dependency chains, layout shifts, caching issues, and accessibility gaps. Use when asked to audit, profile, debug, or optimize page load performance, Lighthouse scores, or site speed. Biases towards retrieval from current documentation over pre-trained knowledge. (source: /Users/root1/.agents/skills/web-perf/SKILL.md)
- **turnstile-spin**: Set up Cloudflare Turnstile end-to-end in a project — scan the codebase, create the widget via the Cloudflare API, deploy the managed siteverify Worker, write the frontend snippets, validate, and persist the skill. Load this when a user asks to add Turnstile, set up CAPTCHA, protect a form from bots, or fix a Turnstile integration. Mirrors developers.cloudflare.com/turnstile/spin. (source: /Users/root1/.agents/skills/turnstile-spin/SKILL.md)
- **durable-objects**: Create and review Cloudflare Durable Objects. Use when building stateful coordination (chat rooms, multiplayer games, booking systems), implementing RPC methods, SQLite storage, alarms, WebSockets, or reviewing DO code for best practices. Covers Workers integration, wrangler config, and testing with Vitest. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.agents/skills/durable-objects/SKILL.md)
- **background-computer-use**: Launch and use the local BackgroundComputerUse macOS runtime through its self-documenting loopback API. Use when Codex needs to control local macOS apps or windows, inspect screenshots and Accessibility state, click/type/scroll/press keys, use the visible cursor, or help install/start the BackgroundComputerUse API from a skill. (source: /Users/root1/.devin/skills/background-computer-use/SKILL.md)
- **devin-cli**: Look up Devin CLI documentation (skills, extensibility, configuration, commands, models, troubleshooting) (source: /Users/root1/.local/share/devin/cli/_versions/3000.1.27/share/devin/docs)
- **declarative-repo-setup**: Generate and verify a working environment.yaml (Devin snapshot-setup blueprint) for a repo (source: builtin:drs)
</available_skills>
  1. You

    find all subdomains and pages, https://int21.ai/

  2. Devin
    Thinking

    The user wants me to find all subdomains and pages for https://int21.ai/. This is a web reconnaissance/discovery task. I should use web search and crawling techniques to discover subdomains and pages. Let me think about the best approach: 1. I could use the Playwright MCP server to navigate the site and discover pages 2. I could use web search to find subdomains 3. I could use tools like subdomain enumeration Looking at the available skills and MCP servers, I have: - playwright MCP server - for browser automation - fff MCP server - for file search (not relevant here) The user's AGENTS.md file mentions using Playwright for X/Twitter scraping, so I could use a similar approach for general web crawling. Let me start by: 1. Listing the available tools on the playwright server 2. Navigate to the main site 3. Explore the site structure 4. Use web search to find subdomains I should also check if there's a skill for this - looking at the available skills, I don't see one specifically for subdomain enumeration or web crawling, so I'll proceed with the tools available. Let me start with mcp_list_tools for the playwright server.

    I'll help you discover subdomains and pages for https://int21.ai/. Let me start by checking the available tools and then explore the site.

    mcp_list_tools(server_name: playwright)
    {
      "server_name": "playwright"
    }
    web_search(query: int21.ai subdomains)
    {
      "query": "int21.ai subdomains"
    }
    In 17,153Out 310Cache 128TTFT 786mstool_calls
  3. Output[
    [
      {
        "server_name": "playwright",
        "tools": [
          {
            "name": "browser_close",
            "description": "Close the page",
            "inputSchema": {
              "$schema": "https://json-schema.org/draft/2020-12/schema",
              "type": "object",
              "properties": {},
              "additionalProperties": false
            },
            "annotations": {
              "title": "Close browser",
              "readOnlyHint": false,
              "destructiveHint": true,
              "openWorldHint": true
            }
          },
          {
            "name": "browser_resize",
            "description": "Resize the browser window",
            "inputSchema": {
              "$schema": "https://json-schema.org/draft/2020-12/schema",
              "type": "object",
              "properties": {
                "width": {
                  "type": "number",
                  "description": "Width of the browser window"
                },
                "height": {
                  "type": "number",
                  "description": "Height of the browser window"
                }
              },
              "required": [
                "width",
                "height"
              ],
              "additionalProperties": false
            },
            "annotations": {
              "title": "Resize browser window",
              "readOnlyHint": false,
              "destructiveHint": true,
              "openWorldHint": true
            }
          },
          {
            "name": "browser_console_messages",
            "description": "Returns all console messages",
            "inputSchema": {
              "$schema": "https://json-schema.org/draft/2020-12/schema",
              "type": "object",
              "properties": {
                "level": {
                  "default": "info",
                  "description": "Level of the console messages to return. Each level includes the messages of more severe levels. Defaults to \"info\".",
                  "type": "string",
                  "enum": [
                    "error",
                    "warning",
                    "info",
                    "debug"
                  ]
                },
                "all": {
                  "description": "Return all console messages since the beginning of the session, not just since the last navigation. Defaults to false.",
                  "type": "boolean"
                },
                "filename": {
                  "description": "Filename to save the console messages to. If not provided, messages are returned as text.",
                  "type": "string"
                }
              },
              "required": [
                "level"
              ],
              "additionalProperties": false
            },
            "annotations": {
              "title": "Get console messages",
              "readOnlyHint": true,
              "destructiveHint": false,
              "openWorldHint": true
            }
          },
          {
            "name": "browser_handle_dialog",
            "description": "Handle a dialog",
            "inputSchema": {
              "$schema": "https://json-schema.org/draft/2020-12/schema",
              "type": "object",
              "properties": {
                "accept": {
                  "type": "boolean",
                  "description": "Whether to accept the dialog."
                },
                "promptText": {
                  "description": "The text of the prompt in case of a prompt dialog.",
                  "type": "string"
                }
              },
              "required": [
                "accept"
              ],
              "additionalProperties": false
            },
            "annotations": {
              "title": "Handle a dialog",
              "readOnlyHint": false,
              "destructiveHint": true,
              "openWorldHint": true
            }
          },
          {
            "name": "browser_evaluate",
            "description": "Evaluate JavaScript expression on page or element",
            "inputSchema": {
              "$schema": "https://json-schema.org/draft/2020-12/schema",
              "type": "object",
              "properties": {
                "element": {
                  "description": "Human-readable element description used to obtain permission to interact with the element",
                  "type": "string"
                },
                "target": {
                  "description": "Exact target element reference from the page snapshot, or a unique element selector",
                  "type": "string"
                },
                "function": {
                  "type": "string",
                  "description": "() => { /* code */ } or (element) => { /* code */ } when element is provided"
                },
                "filename": {
                  "description": "Filename to save the result to. If not provided, result is returned as text.",
                  "type": "string"
                }
              },
              "required": [
                "function"
              ],
              "additionalProperties": false
            },
            "annotations": {
              "title": "Evaluate JavaScript",
              "readOnlyHint": false,
              "destructiveHint": true,
              "openWorldHint": true
            }
          },
          {
            "name": "browser_file_upload",
            "description": "Upload one or multiple files",
            "inputSchema": {
              "$schema": "https://json-schema.org/draft/2020-12/schema",
              "type": "object",
              "properties": {
                "paths": {
                  "description": "The absolute paths to the files to upload. Can be single file or multiple files. If omitted, file chooser is cancelled.",
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                }
              },
              "additionalProperties": false
            },
            "annotations": {
              "title": "Upload files",
              "readOnlyHint": false,
              "destructiveHint": true,
              "openWorldHint": true
            }
          },
          {
            "name": "browser_drop",
            "description": "Drop files or MIME-typed data onto an element, as if dragged from outside the page. At least one of \"paths\" or \"data\" must be provided.",
            "inputSchema": {
              "$schema": "https://json-schema.org/draft/2020-12/schema",
              "type": "object",
              "properties": {
                "element": {
                  "description": "Human-readable element description used to obtain permission to interact with the element",
                  "type": "string"
                },
                "target": {
                  "type": "string",
                  "description": "Exact target element reference from the page snapshot, or a unique element selector"
                },
                "paths": {
                  "description": "Absolute paths to files to drop onto the element.",
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "data": {
                  "description": "Data to drop, as a map of MIME type to string value (e.g. {\"text/plain\": \"hello\", \"text/uri-list\": \"https://example.com\"}).",
                  "type": "object",
                  "propertyNames": {
                    "type": "string"
                  },
                  "additionalProperties": {
                    "type": "string"
                  }
                }
              },
              "required": [
                "target"
              ],
              "additionalProperties": false
            },
            "annotations": {
              "title": "Drop files or data onto an element",
              "readOnlyHint": false,
              "destructiveHint": true,
              "openWorldHint": true
            }
          },
          {
            "name": "browser_fill_form",
            "description": "Fill multiple form fields",
            "inputSchema": {
              "$schema": "https://json-schema.org/draft/2020-12/schema",
              "type": "object",
              "properties": {
                "fields": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "element": {
                        "description": "Human-readable element description used to obtain permission to interact with the element",
                        "type": "string"
                      },
                      "target": {
                        "type": "string",
                        "description": "Exact target element reference from the page snapshot, or a unique element selector"
                      },
                      "name": {
                        "type": "string",
                        "description": "Human-readable field name"
                      },
                      "type": {
                        "type": "string",
                        "enum": [
                          "textbox",
                          "checkbox",
                          "radio",
                          "combobox",
                          "slider"
                        ],
                        "description": "Type of the field"
                      },
                      "value": {
                        "type": "string",
                        "description": "Value to fill in the field. If the field is a checkbox, the value should be `true` or `false`. If the field is a combobox, the value should be the text of the option."
                      }
                    },
                    "required": [
                      "target",
                      "name",
                      "type",
                      "value"
                    ],
                    "additionalProperties": false
                  },
                  "description": "Fields to fill in"
                }
              },
              "required": [
                "fields"
              ],
              "additionalProperties": false
            },
            "annotations": {
              "title": "Fill form",
              "readOnlyHint": false,
              "destructiveHint": true,
              "openWorldHint": true
            }
          },
          {
            "name": "browser_press_key",
            "description": "Press a key on the keyboard",
            "inputSchema": {
              "$schema": "https://json-schema.org/draft/2020-12/schema",
              "type": "object",
              "properties": {
                "key": {
                  "type": "string",
                  "description": "Name of the key to press or a character to generate, such as `ArrowLeft` or `a`"
                }
              },
          … (17 chars truncated)
    … (505 lines truncated)
    <truncation_notice>
    Full output written to: /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/4a89a060/content.txt
    </truncation_notice>
  4. Output# Web Search Results for "int21.ai subdomains"
    # Web Search Results for "int21.ai subdomains"
    
    ## 1. INT21 | Self-Improving Compute Infrastructure
    URL: https://int21.ai/
    
    INT21 | Self-Improving Compute Infrastructure
    ...
    INT21 builds self-improving AI systems for the software beneath modern AI. Our first product generates and optimizes low-level GPU software, then proves its work with tests and benchmarks.
    ...
    ## Introducing INT21 and PTX Kernel Factory
    ...
    We are building self-improving AI systems for the software beneath modern AI. The first four implementations produced by PTX Kernel Factory are open source, and the product is entering beta.
    ...
    An autonomous agent swarm generates GPU kernels, evaluates them on target hardware, retains the evidence, and feeds that knowledge into the next generation. PLAN WRITE REVIEW TUNE AGENT SWARM AUTONOMOUS TARGET GPU LIVE 01 COMPILE 02 CORRECT
    ...
    03 BENCHMARK BEST VALID CANDIDATE +18
    ...
    % GENERATIONS GEN 01
    ...
    08 GEN N+1 SEARCH MEMORY RETAINED EVIDENCE STARTS THE NEXT GENERATION An agent swarm generates kernels, target hardware evaluates them, and retained evidence improves the next generation. AUTONOMOUS SWARM PLAN WRITE REVIEW TUNE AGENT SWARM TARGET GPU LIVE COMPILE CORRECT BENCHMARK BEST
    ...
    % RETAINED
    ...
    01
    ...
    08
    ...
    Cloud-native swarm control plane Live system model
    ...
    scales with compute, not headcount.
    ...
    Our experts set direction, constraints, and acceptance criteria. Autonomous agent swarms execute, evaluate, and retain the work, so adding compute expands how much engineering INT21 can perform.
    ...
    PTX Kernel Factory / Beta
    
    ## 2. Introducing INT21 and PTX Kernel Factory | INT21
    URL: https://int21.ai/insights/introducing-int21-and-ptx-kernel-factory/
    
    Introducing INT21 and PTX Kernel Factory | INT21
    ...
    The first four implementations produced by PTX Kernel Factory are open source today. The product is also entering beta, with early access available at int21.ai.
    ...
    - Int21-AI/KDA-B200: Kimi Delta Attention for Blackwell, validated on NVIDIA B200.
    - Int21-AI/KDA-H100: Kimi Delta Attention for Hopper, validated on NVIDIA GH200.
    - Int21-AI/RMSNorm-B200: RMSNorm for Blackwell, validated on NVIDIA B200.
    - Int21-AI/RMSNorm-H100: RMSNorm for Hopper, validated on NVIDIA GH200.
    ...
    INT21 was founded by Bing Xu in April 2026 as an AI-native company, built on a simple idea: the company’s own engineering capacity should scale with compute.
    ...
    PTX Kernel Factory is now in beta
    ...
    teams building AI models, inference systems, training platforms
    ...
    X Kernel Factory is also the
    
    ## 3. PTX Kernel Factory | INT21
    URL: https://int21.ai/products/ptx-kernel-factory/
    
    PTX Kernel Factory | INT21
    ...
    Product PTX Kernel Factory
    ...
    # PTX Kernel Factory
    ...
    A fully autonomous agent swarm explores implementations, tests them on target NVIDIA hardware, and carries what it learns into the next generation.
    
    ## 4. int21.dev - bgp.he.net
    URL: https://bgp.he.net/dns/int21.dev
    
    int21.dev - bgp.he.net
    ...
    # int21.dev
    ...
    - DNS
    - Certs
    - Website Info
    - IP Info
    - Whois
    - RDAP
    ...
    tech.key-systems.net
    ...
    | IPs | Origin AS | Announcement | Description |
    | --- | --- | --- | --- |
    | 109.230.224.29 | AS197071 | 109.230.224.0/20 | active 1 GmbH |
    | 109.230.224.29 | AS197071 | 109.230.224.0/24 | active 1 GmbH |
    | 2a05:bec0:1:1::23 | AS197071 | 2a05:bec0::/29 | active 1 GmbH |
    
    ## 5. 2a05:bec0:1:1::23 - bgp.he.net
    URL: https://bgp.he.net/ip/2a05:bec0:1:1::23
    
    | IP | PTR | Hostnames |
    | --- | --- | --- |
    | 2a05:bec0:1:1::23 | int21.dev |
    ...
    Total Domains: 0
    ...
    #### Certificates with Domains that map to 2a05:bec0:1:1::23
    
  5. Devin
    Thinking

    Great! I found some useful information. From the web search, I can see: 1. Main site: https://int21.ai/ 2. A subdomain: int21.dev (mentioned in bgp.he.net) 3. Specific pages discovered: - https://int21.ai/insights/introducing-int21-and-ptx-kernel-factory/ - https://int21.ai/products/ptx-kernel-factory/ Let me now use the Playwright browser to navigate to the main site and discover more pages by exploring the site structure. I'll also do additional searches for subdomains.

    mcp_call_tool(server_name: playwright, tool_name: browser_navigate, arguments: {"url":"https:/…)
    {
      "server_name": "playwright",
      "tool_name": "browser_navigate",
      "arguments": {
        "url": "https://int21.ai/"
      }
    }
    web_search(query: site:int21.ai)
    {
      "query": "site:int21.ai"
    }
    web_search(query: "int21.ai" subdomains dns)
    {
      "query": "\"int21.ai\" subdomains dns"
    }
    In 3,401Out 194Cache 17,280TTFT 1,584mstool_calls
  6. Output### Ran Playwright code
    ### Ran Playwright code
    ```js
    await page.goto('https://int21.ai/');
    ```
    ### Page
    - Page URL: https://int21.ai/
    - Page Title: INT21 | Self-Improving Compute Infrastructure
    ### Snapshot
    - [Snapshot](.playwright-mcp/page-2026-07-08T01-22-40-688Z.yml)
  7. OutputNo results found for query: "site:int21.ai"
    No results found for query: "site:int21.ai"
  8. Output# Web Search Results for ""int21.ai" subdomains dns"
    # Web Search Results for ""int21.ai" subdomains dns"
    
    ## 1. INT21 | Self-Improving Compute Infrastructure
    URL: https://int21.ai/
    
    INT21 | Self-Improving Compute Infrastructure
    ...
    INT21 builds self-improving AI systems for the software beneath modern AI. Our first product generates and optimizes low-level GPU software, then proves its work with tests and benchmarks.
    ...
    ## Introducing INT21 and PTX Kernel Factory
    ...
    We are building self-improving AI systems for the software beneath modern AI. The first four implementations produced by PTX Kernel Factory are open source, and the product is entering beta.
    
    ## 2. int21.dev - bgp.he.net
    URL: https://bgp.he.net/dns/int21.dev
    
    int21.dev - bgp.he.net
    ...
    # int21.dev
    ...
    - DNS
    - Certs
    - Website Info
    - IP Info
    - Whois
    - RDAP
    ...
    tech.key-systems.net
    ...
    | IPs | Origin AS | Announcement | Description |
    | --- | --- | --- | --- |
    | 109.230.224.29 | AS197071 | 109.230.224.0/20 | active 1 GmbH |
    | 109.230.224.29 | AS197071 | 109.230.224.0/24 | active 1 GmbH |
    ...
    | 2a05:bec0:1:1::23 | AS197071 | 2a05:bec0::/29 | active 1 GmbH |
    
    ## 3. int.ai - DNS Lookup
    URL: https://robtex.com/en/dns-lookup/ai/int
    
    int.ai - DNS Lookup
    ...
    ## 🔍 DNS Trace
    ...
    | Zone | Nameservers | Glue |
    | --- | --- | --- |
    | ai | v2n1.nic.ai, v0n2.nic.ai, v0n0.nic.ai, v0n1.nic.ai... | - |
    | int.ai | ns4.afternic.com, ns3.afternic.com | - |
    ...
    NS records: ns4.afternic.com, ns3.afternic.com
    ...
    No DS record for int.ai (unsigned zone)
    ...
    | Type | Count | Sample Data |
    | --- | --- | --- |
    | A | 2 | `13.248.169.48, 76.223.54.146` |
    | NS | 2 | `ns3.afternic.com, ns4.afternic.com` |
    | MX | 1 | `. (pri: 0)` |
    | TXT | 1 | `v=spf1 -all` |
    | SOA | 1 | `ns3.afternic.com dns.jomax.net` |
    ...
    ai`int.` points to two IP numbers: 13.248.169.48 and 76.223.54.146.
    
    ## 4. intangible.ai - DNS Lookup
    URL: https://dns.ninja/en/dns-lookup/ai/intangible
    
    ## Subdomains
    ...
    | www.`intangible.ai` |
    | --- |
    | studio.`intangible.ai` |
    ...
    | Zone | Nameservers | Glue |
    | --- | --- | --- |
    | ai | v2n0.nic.ai, v0n3.nic.ai, v0n0.nic.ai, v0n2.nic.ai... | - |
    | intangible.ai | dns2.registrar-servers.com, dns1.registrar-servers.com | - |
    ...
    www.`intangible.ai` and studio.`intangible.ai` are both subdomains of ai`intangible.`.
    ...
    ai`intangible.` is served by two delegated name servers, dns1. registrar-servers.com and dns2. registrar-servers.com.
    
    ## 5. Web stats for Int21  - int21.com
    URL: https://int21.com.clearwebstats.com/
    
    DNS and Mail Servers Health](http://www.
    ...
    .com/int21.com)
    ...
    ## Domain Information for int21.com
    ...
    Domain Status:|clientTransferProhibited https://icann.org/epp#clientTransferProhibited|
    ...
    ## Domain Nameserver Information
    ...
    .parkingcrew.net|[![int21.com name server information](https://www.clearwebstats.com/assets/img/more.gif)](https://www.clearwebstats.com/nameserver/ns1.parkingcrew.net/)|13.248.158.159|![int21.com server is located in United States](https://www.clearwebstats.com/assets/img/flags/16/US.png "int21.com server is located in United States")United States|
    ...
    ns2.parkingcrew.net|[![int21.com name server information](https://www.clearwebstats.com/assets/img/more.gif)](https://www.clearwebstats.com/nameserver/ns2.parkingcrew.
    ...
    /)|76.223.21.9|![int21.com server is located in United States](https://www.clearwebstats.com/assets/img/flags/16/US.png "int21.com server is located in United States")United States|
    ...
    ## DNS Record Analysis
    ...
    |Host|Type|TTL|Extra|
    int21.com|A|594|**IP:**185.53.178.6
    |
    int21.com|NS|3600|**Target:**ns2.parkingcrew.net
    |
    int21.com|NS|3600|**Target:**ns1.parkingcrew.net
    |
    int21.com|SOA|10800|**MNAME:**ns1.parkingcrew.net
    **RNAME:**hostmaster.int21.com
    **Serial:**1491027000
    **Refresh:**28800
    **Retry:**7200
    **Expire:**604800
    **Minimum TTL:**86400
    |
    int21.com|MX|3600|**Priority:**5
    **Target:**mail.h-email.net
    |
    int21.com|TXT|3600|**TXT:**v=spf1 ip6:fd1b:212c:a5f9::/48 -all
    |
    ...
    ## Full WHOIS Lookup for int21.com
    ...
    Name Server: NS1.PARKINGCREW.NET
    ...
    Name Server: NS2.PARKINGCREW.NET
    
  9. Devin
    Thinking

    The browser has navigated to the main site. Let me read the page snapshot to see what links and pages are available on the site. I should also explore the site structure to find all pages.

    read(file_path: .playwright-mcp/page-2026-07-08T01-22-40…)
    {
      "file_path": ".playwright-mcp/page-2026-07-08T01-22-40-688Z.yml"
    }
    In 1,690Out 74Cache 20,608TTFT 603mstool_calls
  10. Output<file-view path=".playwright-mcp/page-2026-07-08T01-22-40-688Z.yml" start_line="1" end_line="327" to
    <file-view path=".playwright-mcp/page-2026-07-08T01-22-40-688Z.yml" start_line="1" end_line="327" total_lines="327">
      1|- generic [active] [ref=e1]:
      2|  - link "Skip to content" [ref=e2] [cursor=pointer]:
      3|    - /url: "#main-content"
      4|  - banner [ref=e3]:
      5|    - link "INT21 home" [ref=e4] [cursor=pointer]:
      6|      - /url: /
      7|      - generic [ref=e5]: INT21
      8|    - navigation "Primary navigation" [ref=e6]:
      9|      - link "Product" [ref=e7] [cursor=pointer]:
     10|        - /url: /products/ptx-kernel-factory
     11|      - link "SwarmOS" [ref=e8] [cursor=pointer]:
     12|        - /url: /#swarmos
     13|      - link "Blog" [ref=e9] [cursor=pointer]:
     14|        - /url: /insights
     15|      - link "Company" [ref=e10] [cursor=pointer]:
     16|        - /url: /#company
     17|    - link "Request access" [ref=e11] [cursor=pointer]:
     18|      - /url: https://forms.gle/XPHW2xTKbTNhbfKe9
     19|      - text: Request access
     20|      - generic [ref=e12]: "->"
     21|  - main [ref=e13]:
     22|    - region "Use compute to improve compute." [ref=e14]:
     23|      - generic [ref=e15]:
     24|        - heading "Use compute to improve compute." [level=1] [ref=e16]:
     25|          - text: Use compute
     26|          - text: to improve
     27|          - text: compute.
     28|        - paragraph [ref=e17]: INT21 builds self-improving AI systems for the software beneath modern AI. Our first product generates and optimizes low-level GPU software, then proves its work with tests and benchmarks.
     29|        - generic [ref=e18]:
     30|          - link "Explore PTX Kernel Factory" [ref=e19] [cursor=pointer]:
     31|            - /url: /products/ptx-kernel-factory
     32|            - text: Explore PTX Kernel Factory
     33|            - generic [ref=e20]: "->"
     34|          - button "Watch company film" [ref=e21] [cursor=pointer]:
     35|            - text: Watch company film
     36|            - img [ref=e22]
     37|      - figure "INT21 Use compute to improve compute" [ref=e24]:
     38|        - button "Watch INT21 film" [ref=e25] [cursor=pointer]:
     39|          - img "A cinematic view of interconnected compute infrastructure" [ref=e26]
     40|          - generic [ref=e27]: ▷
     41|        - generic [ref=e28]:
     42|          - generic [ref=e29]: INT21
     43|          - generic [ref=e30]: Use compute to improve compute
     44|    - region "Introducing INT21 and PTX Kernel Factory" [ref=e31]:
     45|      - generic [ref=e32]:
     46|        - figure "PTX Kernel Factory First public release" [ref=e33]:
     47|          - button "Play PTX Kernel Factory film" [ref=e35] [cursor=pointer]:
     48|            - generic [ref=e36]: ▷
     49|          - generic [ref=e37]:
     50|            - generic [ref=e38]: PTX Kernel Factory
     51|            - generic [ref=e39]: First public release
     52|        - generic [ref=e40]:
     53|          - paragraph [ref=e41]:
     54|            - time [ref=e42]: June 16, 2026
     55|            - generic [ref=e43]: /Company launch
     56|          - heading "Introducing INT21 and PTX Kernel Factory" [level=2] [ref=e44]:
     57|            - link "Introducing INT21 and PTX Kernel Factory" [ref=e45] [cursor=pointer]:
     58|              - /url: /insights/introducing-int21-and-ptx-kernel-factory/
     59|          - paragraph [ref=e46]: We are building self-improving AI systems for the software beneath modern AI. The first four implementations produced by PTX Kernel Factory are open source, and the product is entering beta.
     60|          - generic [ref=e47]:
     61|            - link "Read the launch story" [ref=e48] [cursor=pointer]:
     62|              - /url: /insights/introducing-int21-and-ptx-kernel-factory/
     63|              - text: Read the launch story
     64|              - generic [ref=e49]: "->"
     65|            - link "See launch results" [ref=e50] [cursor=pointer]:
     66|              - /url: "#proof"
     67|              - text: See launch results
     68|              - generic [ref=e51]: "->"
     69|    - region "Generated by PTX Factory. Measured against best baseline." [ref=e52]:
     70|      - generic [ref=e53]:
     71|        - generic [ref=e54]:
     72|          - paragraph [ref=e55]: 01 / First proof
     73|          - heading "Generated by PTX Factory. Measured against best baseline." [level=2] [ref=e56]
     74|        - paragraph [ref=e57]: PTX Kernel Factory produced four GPU kernel artifacts across Hopper and Blackwell. We tested them on matching hardware and inputs against established expert implementations, with correctness verified before timing.
     75|      - generic "Factory artifacts compared with expert baselines" [ref=e58]:
     76|        - article [ref=e59]:
     77|          - generic [ref=e60]:
     78|            - generic [ref=e61]:
     79|              - text: Factory artifacts
     80|              - heading "Kimi Delta Attention" [level=3] [ref=e62]
     81|            - paragraph [ref=e63]:
     82|              - text: Expert baseline
     83|              - link "FlashKDA" [ref=e64] [cursor=pointer]:
     84|                - /url: https://github.com/MoonshotAI/FlashKDA
     85|                - text: FlashKDA
     86|                - img [ref=e65]
     87|              - generic [ref=e67]: CUTLASS
     88|          - generic [ref=e68]:
     89|            - generic [ref=e69]:
     90|              - text: GH200 / Hopper
     91|              - strong [ref=e70]: 1.59x
     92|              - paragraph [ref=e71]: Peak measured performance.
     93|            - generic [ref=e72]:
     94|              - text: B200 / Blackwell
     95|              - strong [ref=e73]: 1.52x
     96|              - paragraph [ref=e74]: Optimized integration.
     97|        - article [ref=e75]:
     98|          - generic [ref=e76]:
     99|            - generic [ref=e77]:
    100|              - text: Factory artifacts
    101|              - heading "RMSNorm" [level=3] [ref=e78]
    102|            - paragraph [ref=e79]:
    103|              - text: Expert baseline
    104|              - link "QuACK" [ref=e80] [cursor=pointer]:
    105|                - /url: https://github.com/Dao-AILab/quack
    106|                - text: QuACK
    107|                - img [ref=e81]
    108|              - generic [ref=e83]: CuTe DSL
    109|          - generic [ref=e84]:
    110|            - generic [ref=e85]:
    111|              - text: GH200 / Hopper
    112|              - strong [ref=e86]: 8.17%
    113|              - paragraph [ref=e87]: Faster on geometric mean.
    114|            - generic [ref=e88]:
    115|              - text: B200 / Blackwell
    116|              - strong [ref=e89]: 126 / 126
    117|              - paragraph [ref=e90]: Faster in every comparable case.
    118|      - paragraph [ref=e91]: Operator-level benchmark results, not full-model speedup claims.
    119|    - region "PTX Kernel Factory" [ref=e92]:
    120|      - generic [ref=e93]:
    121|        - generic [ref=e94]:
    122|          - generic [ref=e95]:
    123|            - paragraph [ref=e96]: 02 / First product
    124|            - heading "PTX Kernel Factory" [level=2] [ref=e97]
    125|          - generic [ref=e98]:
    126|            - heading "Every generation starts ahead of the last." [level=3] [ref=e99]
    127|            - paragraph [ref=e100]: A fully autonomous agent swarm searches for GPU kernel implementations, proves them on real hardware, and carries every benchmark, failure, and successful optimization into the next generation. More runs create more evidence, better search strategies, and stronger kernels over time.
    128|        - generic [ref=e101]:
    129|          - figure "Autonomous optimization loop Evidence retained across generations" [ref=e102]:
    130|            - generic [ref=e103]:
    131|              - generic [ref=e104]: Autonomous optimization loop
    132|              - generic [ref=e105]: Evidence retained across generations
    133|            - img "PTX Kernel Factory autonomous improvement loop An autonomous agent swarm generates GPU kernels, evaluates them on target hardware, retains the evidence, and feeds that knowledge into the next generation." [ref=e107]:
    134|              - generic [ref=e111]:
    135|                - generic [ref=e112]: AUTONOMOUS SWARM
    136|                - generic [ref=e113]: HARDWARE EVALUATION
    137|                - generic [ref=e114]: RETAINED EVIDENCE
    138|              - generic [ref=e122]: PLAN
    139|              - generic [ref=e125]: WRITE
    140|              - generic [ref=e128]: REVIEW
    141|              - generic [ref=e131]: TUNE
    142|              - generic [ref=e132]:
    143|                - generic [ref=e135]: AGENT
    144|                - generic [ref=e136]: SWARM
    145|                - generic [ref=e137]: AUTONOMOUS
    146|              - generic [ref=e141]:
    147|                - generic [ref=e143]: TARGET GPU
    148|                - generic [ref=e144]: LIVE
    149|                - generic [ref=e145]:
    150|                  - generic [ref=e146]: "01"
    151|                  - generic [ref=e147]: COMPILE
    152|                - generic [ref=e149]:
    153|                  - generic [ref=e150]: "02"
    154|                  - generic [ref=e151]: CORRECTNESS
    155|                - generic [ref=e153]:
    156|                  - generic [ref=e154]: "03"
    157|                  - generic [ref=e155]: BENCHMARK
    158|                - generic [ref=e157]: BEST VALID CANDIDATE
    159|                - generic [ref=e158]: +18.7%
    160|              - generic [ref=e159]:
    161|                - generic [ref=e161]: GENERATIONS
    162|                - generic [ref=e163]: GEN 01
    163|                - generic [ref=e166]: GEN 08
    164|                - generic [ref=e169]: GEN N+1
    165|                - generic [ref=e171]: SEARCH MEMORY
    166|              - generic [ref=e173]: RETAINED EVIDENCE STARTS THE NEXT GENERATION
    167|          - generic [ref=e174]:
    168|            - list [ref=e175]:
    169|              - listitem [ref=e176]:
    170|                - generic [ref=e177]: "01"
    171|                - generic [ref=e178]:
    172|                  - heading "Fully autonomous swarm" [level=3] [ref=e179]
    173|                  - paragraph [ref=e180]: Specialized agents plan, implement, review, and optimize each kernel end to end.
    174|              - listitem [ref=e181]:
    175|                - generic [ref=e182]: "02"
    176|                - generic [ref=e183]:
    177|                  - heading "Grounded in real hardware" [level=3] [ref=e184]
    178|                  - paragraph [ref=e185]: Every candidate is compiled, verified, and benchmarked on the target GPU.
    179|              - listitem [ref=e186]:
    180|                - generic [ref=e187]: "03"
    181|                - generic [ref=e188]:
    182|                  - heading "Improvement compounds" [level=3] [ref=e189]
    183|                  - paragraph [ref=e190]: Reusable evidence improves both the search process and the kernels it produces.
    184|            - generic [ref=e191]:
    185|              - link "Explore the product" [ref=e192] [cursor=pointer]:
    186|                - /url: /products/ptx-kernel-factory
    187|                - text: Explore the product
    188|                - generic [ref=e193]: "->"
    189|              - link "Request access" [ref=e194] [cursor=pointer]:
    190|                - /url: https://forms.gle/XPHW2xTKbTNhbfKe9
    191|                - text: Request access
    192|                - generic [ref=e195]: "->"
    193|    - region "Built on SwarmOS." [ref=e196]:
    194|      - generic [ref=e197]:
    195|        - generic [ref=e198]:
    196|          - generic [ref=e199]:
    197|            - paragraph [ref=e200]: 03 / Platform
    198|            - heading "Built on SwarmOS." [level=2] [ref=e201]
    199|          - generic [ref=e202]:
    200|            - heading "Thousands of agents. One evolving system." [level=3] [ref=e203]
    201|            - paragraph [ref=e204]: SwarmOS is a cloud-native platform for running specialized agents at elastic scale toward the same measurable goal. Agents explore in parallel, coordinate through shared evidence, and continuously converge on stronger solutions.
    202|        - figure "Cloud-native swarm control plane Live system model" [ref=e205]:
    203|          - generic [ref=e206]:
    204|            - generic [ref=e207]: Cloud-native swarm control plane
    205|            - generic [ref=e208]: Live system model
    206|          - img "A shared objective coordinates thousands of cloud agents. Results, failures, and successful strategies flow into durable memory and become the starting point for the next generation." [ref=e209]:
    207|            - generic [ref=e216]:
    208|              - generic [ref=e217]: Swarm online
    209|              - generic [ref=e219]: Elastic cloud
    210|            - generic:
    211|              - generic: Parallel search
    212|              - strong: Thousands of agents
    213|            - generic:
    214|              - generic: Shared objective
    215|              - strong: One measurable goal
    216|            - generic:
    217|              - generic: Durable experience
    218|              - strong: Generation N -> N+1
    219|            - generic:
    220|              - generic: Gen 01
    221|              - generic: Gen 08
    222|              - generic: Gen N+1
    223|          - generic [ref=e220]:
    224|            - generic [ref=e221]: Thousands explore in parallel
    225|            - generic [ref=e222]: Every generation inherits the last
    226|        - list "SwarmOS platform capabilities" [ref=e223]:
    227|          - listitem [ref=e224]:
    228|            - generic [ref=e225]: 01 / Elastic scale
    229|            - strong [ref=e226]: Thousands of agents
    230|            - paragraph [ref=e227]: Cloud-native scheduling expands the swarm around available compute.
    231|          - listitem [ref=e228]:
    232|            - generic [ref=e229]: 02 / Shared direction
    233|            - strong [ref=e230]: One measurable goal
    234|            - paragraph [ref=e231]: Every agent works against the same constraints and acceptance criteria.
    235|          - listitem [ref=e232]:
    236|            - generic [ref=e233]: 03 / Generational memory
    237|            - strong [ref=e234]: Experience carries forward
    238|            - paragraph [ref=e235]: Results, failures, and strategies become the next generation's starting point.
    239|    - region "Founded by experts across the full AI stack." [ref=e236]:
    240|      - generic [ref=e237]:
    241|        - paragraph [ref=e238]: 04 / Company
    242|        - generic [ref=e239]:
    243|          - heading "Founded by experts across the full AI stack." [level=2] [ref=e240]
    244|          - paragraph [ref=e241]: INT21 brings together deep experience in agent systems, machine learning models, GPU software, distributed infrastructure, and cloud computing.
    245|      - list "INT21 founding expertise" [ref=e242]:
    246|        - listitem [ref=e243]:
    247|          - generic [ref=e244]: "01"
    248|          - strong [ref=e245]: Agents
    249|        - listitem [ref=e246]:
    250|          - generic [ref=e247]: "02"
    251|          - strong [ref=e248]: Models
    252|        - listitem [ref=e249]:
    253|          - generic [ref=e250]: "03"
    254|          - strong [ref=e251]: GPU
    255|        - listitem [ref=e252]:
    256|          - generic [ref=e253]: "04"
    257|          - strong [ref=e254]: Infrastructure
    258|        - listitem [ref=e255]:
    259|          - generic [ref=e256]: "05"
    260|          - strong [ref=e257]: Cloud
    261|      - generic [ref=e258]:
    262|        - paragraph [ref=e259]: AI-native operating model
    263|        - heading "Engineering capacity scales with compute, not headcount." [level=3] [ref=e260]
    264|        - paragraph [ref=e261]: Our experts set direction, constraints, and acceptance criteria. Autonomous agent swarms execute, evaluate, and retain the work, so adding compute expands how much engineering INT21 can perform.
    265|      - generic [ref=e262]:
    266|        - paragraph [ref=e263]: Founders / Cross-stack operators
    267|        - paragraph [ref=e264]: Research, systems, and infrastructure experience carried into one company.
    268|      - generic [ref=e265]:
    269|        - article [ref=e266]:
    270|          - figure [ref=e267]:
    271|            - img "Bing Xu, Founder and CEO of INT21" [ref=e268]
    272|          - generic [ref=e269]:
    273|            - heading "Bing Xu" [level=3] [ref=e270]
    274|            - paragraph [ref=e271]: Founder & CEO
    275|            - list "Bing Xu expertise" [ref=e272]:
    276|              - listitem [ref=e273]: Agents
    277|              - listitem [ref=e274]: /Models
    278|              - listitem [ref=e275]: /GPU
    279|            - paragraph [ref=e276]: Bing co-authored the original Generative Adversarial Nets paper, created XGBoost's Python package, and co-created MXNet and AITemplate. Before founding INT21, he was a Distinguished Engineer at NVIDIA following its acquisition of HippoML, the GPU inference company he founded.
    280|        - article [ref=e277]:
    281|          - figure [ref=e278]:
    282|            - img "Qingye Jiang, Founding Partner at INT21" [ref=e279]
    283|          - generic [ref=e280]:
    284|            - heading "Qingye Jiang" [level=3] [ref=e281]
    285|            - paragraph [ref=e282]: Founding Partner
    286|            - list "Qingye Jiang expertise" [ref=e283]:
    287|              - listitem [ref=e284]: Infrastructure
    288|              - listitem [ref=e285]: /Cloud
    289|            - paragraph [ref=e286]: Qingye has spent more than a decade building and tuning high-performance computing and distributed systems at AWS. His work spans workload analysis, performance engineering, cloud infrastructure, and real-time systems.
    290|    - generic [ref=e288]:
    291|      - generic [ref=e289]:
    292|        - paragraph [ref=e290]: PTX Kernel Factory / Beta
    293|        - heading "Bring us a hard GPU workload." [level=2] [ref=e291]
    294|      - generic [ref=e292]:
    295|        - paragraph [ref=e293]: Start with an operation that is too slow, a new architecture without a mature kernel, or an important workload that has not justified weeks of specialist time.
    296|        - link "Request beta access" [ref=e294] [cursor=pointer]:
    297|          - /url: https://forms.gle/XPHW2xTKbTNhbfKe9
    298|          - text: Request beta access
    299|          - generic [ref=e295]: "->"
    300|  - contentinfo [ref=e296]:
    301|    - generic [ref=e297]:
    302|      - link "Return to top" [ref=e298] [cursor=pointer]:
    303|        - /url: /
    304|      - paragraph [ref=e299]:
    305|        - text: Use compute
    306|        - text: to improve compute.
    307|    - navigation "Footer navigation" [ref=e300]:
    308|      - link "Product" [ref=e301] [cursor=pointer]:
    309|        - /url: /products/ptx-kernel-factory
    310|      - link "SwarmOS" [ref=e302] [cursor=pointer]:
    311|        - /url: /#swarmos
    312|      - link "Blog" [ref=e303] [cursor=pointer]:
    313|        - /url: /insights
    314|      - link "Company" [ref=e304] [cursor=pointer]:
    315|        - /url: /#company
    316|      - link "Request access" [ref=e305] [cursor=pointer]:
    317|        - /url: https://forms.gle/XPHW2xTKbTNhbfKe9
    318|      - link "Terms" [ref=e306] [cursor=pointer]:
    319|        - /url: /terms
    320|      - link "Privacy" [ref=e307] [cursor=pointer]:
    321|        - /url: /privacy
    322|    - generic [ref=e308]:
    323|      - link "info@int21.ai" [ref=e309] [cursor=pointer]:
    324|        - /url: mailto:info@int21.ai
    325|      - paragraph [ref=e310]:
    326|        - text: © 2026 INT21 AI, Inc.
    327|        - text: All rights reserved.
    </file-view>
  11. Devin
    Thinking

    Great! I can see the page structure. From the homepage, I can identify several pages and sections: **Pages discovered from the homepage:** 1. Main page: https://int21.ai/ 2. Product page: https://int21.ai/products/ptx-kernel-factory 3. Blog/Insights: https://int21.ai/insights 4. Specific blog post: https://int21.ai/insights/introducing-int21-and-ptx-kernel-factory/ 5. Terms: https://int21.ai/terms 6. Privacy: https://int21.ai/privacy 7. External link: https://forms.gle/XPHW2xTKbTNhbfKe9 (Google Form for access requests) **Sections (anchor links):** - #swarmos - #company - #proof Let me now navigate to the key pages to discover more content, especially the insights/blog section and the product page.

    mcp_call_tool(server_name: playwright, tool_name: browser_navigate, arguments: {"url":"https:/…)
    {
      "server_name": "playwright",
      "tool_name": "browser_navigate",
      "arguments": {
        "url": "https://int21.ai/insights"
      }
    }
    mcp_call_tool(server_name: playwright, tool_name: browser_navigate, arguments: {"url":"https:/…)
    {
      "server_name": "playwright",
      "tool_name": "browser_navigate",
      "arguments": {
        "url": "https://int21.ai/terms"
      }
    }
    mcp_call_tool(server_name: playwright, tool_name: browser_navigate, arguments: {"url":"https:/…)
    {
      "server_name": "playwright",
      "tool_name": "browser_navigate",
      "arguments": {
        "url": "https://int21.ai/privacy"
      }
    }
    In 5,422Out 319Cache 22,272TTFT 850mstool_calls
  12. Output### Ran Playwright code
    ### Ran Playwright code
    ```js
    await page.goto('https://int21.ai/insights');
    ```
    ### Page
    - Page URL: https://int21.ai/insights/
    - Page Title: Blog | INT21
    ### Snapshot
    - [Snapshot](.playwright-mcp/page-2026-07-08T01-22-43-585Z.yml)
  13. Output### Ran Playwright code
    ### Ran Playwright code
    ```js
    await page.goto('https://int21.ai/terms');
    ```
    ### Page
    - Page URL: https://int21.ai/terms/
    - Page Title: Terms and Conditions | INT21 AI
    ### Snapshot
    - [Snapshot](.playwright-mcp/page-2026-07-08T01-22-43-789Z.yml)
  14. OutputCanceled due to user interrupt (tool_call_id: dfcdc7a38)
    Canceled due to user interrupt (tool_call_id: dfcdc7a38)
  15. You

    nigga did you really just try to google the subdomains?

  16. Devin
    Thinking

    The user is right - I took a naive approach by trying to Google for subdomains, which is not an effective way to discover subdomains. I should have used proper subdomain enumeration techniques. Let me think about better approaches: 1. DNS enumeration - using tools like `dig`, `nslookup`, or `host` to discover DNS records 2. Certificate transparency logs - searching for certificates issued for the domain 3. Using specialized subdomain discovery tools 4. DNS bruteforcing 5. Checking public datasets like CRT.sh, VirusTotal, etc. Since I have access to shell commands, I should use proper DNS enumeration techniques. Let me start with basic DNS lookups and then move to more advanced techniques.

    You're absolutely right - that was a lazy approach. Let me do proper subdomain enumeration using DNS techniques instead.

    exec(command: dig int21.ai ANY +noall +answer)
    {
      "command": "dig int21.ai ANY +noall +answer"
    }
    exec(command: dig int21.ai NS +noall +answer)
    {
      "command": "dig int21.ai NS +noall +answer"
    }
    exec(command: dig int21.ai MX +noall +answer)
    {
      "command": "dig int21.ai MX +noall +answer"
    }
    exec(command: dig int21.ai TXT +noall +answer)
    {
      "command": "dig int21.ai TXT +noall +answer"
    }
    In 566Out 244Cache 27,648TTFT 578mstool_calls
  17. OutputOutput from command in shell c46b3f:
    Output from command in shell c46b3f:
    
    ; <<>> DiG 9.10.6 <<>> int21.ai ANY +noall +answer
    ;; global options: +cmd
    int21.ai.		3600	IN	HINFO	"RFC8482" ""
    
    
    Exit code: 0
  18. OutputOutput from command in shell 722d54:
    Output from command in shell 722d54:
    
    ; <<>> DiG 9.10.6 <<>> int21.ai NS +noall +answer
    ;; global options: +cmd
    int21.ai.		21600	IN	NS	mona.ns.cloudflare.com.
    int21.ai.		21600	IN	NS	hassan.ns.cloudflare.com.
    
    
    Exit code: 0
  19. OutputOutput from command in shell 40ba21:
    Output from command in shell 40ba21:
    
    ; <<>> DiG 9.10.6 <<>> int21.ai MX +noall +answer
    ;; global options: +cmd
    int21.ai.		3600	IN	MX	5 alt1.aspmx.l.google.com.
    int21.ai.		3600	IN	MX	10 alt3.aspmx.l.google.com.
    int21.ai.		3600	IN	MX	1 aspmx.l.google.com.
    int21.ai.		3600	IN	MX	10 alt4.aspmx.l.google.com.
    int21.ai.		3600	IN	MX	5 alt2.aspmx.l.google.com.
    
    
    Exit code: 0
  20. OutputOutput from command in shell 6168a6:
    Output from command in shell 6168a6:
    
    ; <<>> DiG 9.10.6 <<>> int21.ai TXT +noall +answer
    ;; global options: +cmd
    int21.ai.		3600	IN	TXT	"v=spf1 include:_spf.google.com ~all"
    int21.ai.		3600	IN	TXT	"google-site-verification=6a42IeaGFMEqvZH5yvTTfifx9HtD3GGMQvZfzbgbK74"
    
    
    Exit code: 0
  21. Devin
    Thinking

    Good, I can see they're using Cloudflare nameservers. Let me now do a zone transfer attempt (though it's unlikely to succeed), and then try certificate transparency logs and DNS bruteforcing for common subdomains.

    exec(command: dig int21.ai AXFR @mona.ns.cloudflare.co…)
    {
      "command": "dig int21.ai AXFR @mona.ns.cloudflare.com +noall +answer"
    }
    exec(command: for sub in www mail api admin dev stagin…)
    {
      "command": "for sub in www mail api admin dev staging test blog docs portal app support; do dig $sub.int21.ai A +noall +answer; done"
    }
    exec(command: curl -s "https://crt.sh/?q=%.int21.ai&ou…)
    {
      "command": "curl -s \"https://crt.sh/?q=%.int21.ai&output=json\" | head -100"
    }
    In 731Out 143Cache 28,160TTFT 819mstool_calls
  22. OutputOutput from command in shell 2f8062:
    Output from command in shell 2f8062:
    
    ; <<>> DiG 9.10.6 <<>> int21.ai AXFR @mona.ns.cloudflare.com +noall +answer
    ;; global options: +cmd
    ; Transfer failed.
    
    
    Exit code: 0
  23. OutputOutput from command in shell e23361:
    Output from command in shell e23361:
    
    ; <<>> DiG 9.10.6 <<>> www.int21.ai A +noall +answer
    ;; global options: +cmd
    
    ; <<>> DiG 9.10.6 <<>> mail.int21.ai A +noall +answer
    ;; global options: +cmd
    
    ; <<>> DiG 9.10.6 <<>> api.int21.ai A +noall +answer
    ;; global options: +cmd
    
    ; <<>> DiG 9.10.6 <<>> admin.int21.ai A +noall +answer
    ;; global options: +cmd
    
    ; <<>> DiG 9.10.6 <<>> dev.int21.ai A +noall +answer
    ;; global options: +cmd
    
    ; <<>> DiG 9.10.6 <<>> staging.int21.ai A +noall +answer
    ;; global options: +cmd
    
    ; <<>> DiG 9.10.6 <<>> test.int21.ai A +noall +answer
    ;; global options: +cmd
    
    ; <<>> DiG 9.10.6 <<>> blog.int21.ai A +noall +answer
    ;; global options: +cmd
    
    ; <<>> DiG 9.10.6 <<>> docs.int21.ai A +noall +answer
    ;; global options: +cmd
    
    ; <<>> DiG 9.10.6 <<>> portal.int21.ai A +noall +answer
    ;; global options: +cmd
    
    ; <<>> DiG 9.10.6 <<>> app.int21.ai A +noall +answer
    ;; global options: +cmd
    
    ; <<>> DiG 9.10.6 <<>> support.int21.ai A +noall +answer
    ;; global options: +cmd
    
    
    Exit code: 0
  24. OutputCanceled due to user interrupt (tool_call_id: 72beb2de2)
    Canceled due to user interrupt (tool_call_id: 72beb2de2)
  25. You

    nigga are you really trying to fuzz the subdomains

  26. Devin
    Thinking

    The user is right - I'm taking a very basic and inefficient approach. I should be using proper subdomain enumeration tools or techniques. Let me think about better approaches: 1. Certificate Transparency logs (crt.sh) - this is usually the most effective 2. DNS aggregation services like SecurityTrails, WhoisXMLAPI, etc. 3. Using tools like subfinder, amass, etc. 4. Checking web archives 5. Looking at their GitHub repos, documentation, etc. for references Let me try a more targeted approach - check crt.sh properly and also look at their actual website content and any public repos or documentation that might reference subdomains.

    You're absolutely right - let me do this properly. Let me check certificate transparency logs and look at their actual infrastructure.

    exec(command: curl -s "https://crt.sh/?q=%.int21.ai&ou…)
    {
      "command": "curl -s \"https://crt.sh/?q=%.int21.ai&output=json\" | python3 -c \"import sys, json; certs = json.load(sys.stdin); print('\\n'.join(set([c['name_value'] for c in certs])))\""
    }
    web_search(query: int21.ai github)
    {
      "query": "int21.ai github"
    }
    In 718Out 237Cache 28,800TTFT 638mstool_calls
  27. OutputNo output produced after 5.0 seconds. Command running in background with ID: 89fd40. Run get_output
    No output produced after 5.0 seconds. Command running in background with ID: 89fd40. Run get_output with timeout if you need to wait.
  28. Output# Web Search Results for "int21.ai github"
    # Web Search Results for "int21.ai github"
    
    ## 1. Int21-AI/KDA-H100
    URL: https://github.com/Int21-AI/KDA-H100
    
    # Int21-AI/KDA-H100
    ...
    > One of the first four open-source GPU implementations produced by
    > [INT21's PTX Kernel Factory](https://int21.ai).
    ...
    flashkda
    ...
    [PTX Kernel Factory](https://int21.ai) is INT21's system for generating and
    improving low-level NVIDIA GPU software. Human engineers define the operation,
    correctness requirements, target hardware, and success metric. The factory
    coordinates multiple AI agents to generate candidates, compile them, reject
    incorrect results, benchmark valid implementations, and carry useful evidence
    into the next round.
    ...
    of the first public release:
    ...
    | Workload | NVIDIA Hopper | NVIDIA Blackwell |
    | --- | --- | --- |
    | Kimi Delta Attention | **This repository** | [KDA-B200](https://github.com/Int21-AI/KDA-B200) |
    | RMSNorm | [RMSNorm-H100](https://github.com/Int21-AI/RMSNorm-H100) | [RMSNorm-B200](https://github.com/Int21-AI/RMSNorm-B200) |
    ...
    PTX Kernel Factory is in beta. Learn more and request early access at
    [int21.ai](https://int21.ai).
    
    ## 2. Int21-AI/KDA-B200
    URL: https://github.com/Int21-AI/KDA-B200
    
    # Int21-AI/KDA-B200
    ...
    > One of the first four open-source GPU implementations produced by
    > [INT21's PTX Kernel Factory](https://int21.ai).
    ...
    `flashkda-ptx` is a forward-only Kimi Delta Attention (KDA) implementation for
    NVIDIA Blackwell (`sm_100a`), validated on an NVIDIA B200 on June 8, 2026. It
    is written in plain CUDA C++ and PTX, with no CUTLASS or CUTE build/runtime
    dependency, and keeps the public interface of the CUTLASS-based FlashKDA
    package.
    ...
    [PTX Kernel Factory](https://int21.ai) is INT21's system for generating and
    improving low-level NVIDIA GPU software. Human engineers define the operation,
    correctness requirements, target hardware, and success metric. The factory
    coordinates multiple AI agents to generate candidates, compile them, reject
    incorrect results, benchmark valid implementations, and carry useful evidence
    into the next round.
    ...
    | Workload | NVIDIA Hopper | NVIDIA Blackwell |
    | --- | --- | --- |
    | Kimi Delta Attention | [KDA-H100](https://github.com/Int21-AI/KDA-H100) | **This repository** |
    | RMSNorm | [RMSNorm-H100](https://github.com/Int21-AI/RMSNorm-H100) | [RMSNorm-B200](https://github.com/Int21-AI/RMSNorm-B200) |
    ...
    PTX Kernel Factory is in beta. Learn more and request early access at
    [int21.ai](https://int21.ai).
    
    ## 3. INT21 | Self-Improving Compute Infrastructure
    URL: https://int21.ai/
    
    INT21 | Self-Improving Compute Infrastructure
    ...
    INT21 builds self-improving AI systems for the software beneath modern AI. Our first product generates and optimizes low-level GPU software, then proves its work with tests and benchmarks.
    ...
    PTX Kernel Factory First public release
    ...
    ## Introducing INT21 and PTX Kernel Factory
    ...
    We are building self-improving AI systems for the software beneath modern AI. The first four implementations produced by PTX Kernel Factory are open source, and the product is entering beta.
    ...
    Bing co-authored the original Generative Adversarial Nets paper, created XGBoost's Python package, and co-created MXNet and AITemplate. Before founding INT21, he was a Distinguished Engineer at NVIDIA following its acquisition of HippoML, the GPU inference company he founded.
    ...
    PTX Kernel Factory / Beta
    
    ## 4. AI21Labs/ai21-python
    URL: https://github.com/AI21Labs/ai21-python
    
    # AI21Labs/ai21-python
    ...
    AI21 Python SDK
    ...
    - Stars: 70
    - Forks: 13
    - Watchers: 70
    - Open issues: 11
    - License: Apache License 2.0
    - Homepage: https://docs.ai21.com/docs/sdk
    - Default branch: main
    - Created: 2023-12-10T09:20:15Z
    ...
    - ai21
    - ai21labs
    - llm
    - tsm
    ...
    ## README
    
     
     AI21 Labs Python SDK 
     
    
    [//]: # "Add when public"
    [//]: # ' '
    [//]: # ' '
    
     
     
     
     
     
     
     
     
     
    
    ---
    ...
    The full documentation for the REST API can be found on [docs.ai21.com](https://docs.ai21.com/).
    
    ## 5. AI21Labs - Organization
    URL: https://github.com/ai21labs
    
    # AI21Labs - Organization
    ...
    AI21 Labs is an AI lab & product company whose mission is to reimagine the way we read and write by making the machine a thought partner to humans.
    ...
    - Login: AI21Labs
    - Location: Tel Aviv, Israel
    - Blog: https://www.ai21.com/blog
    - Email: infra@ai21.com
    - Public repos: 27
    - Followers: 194
    - Created: 2017-11-19T06:37:53Z
    ...
    ## Top Repositories
    ...
    - AI21Labs/in-context-ralm - (295 stars)
    ...
    - AI21Labs/lm-evaluation - Evaluation suite for large-scale language models. (130 stars)
    - AI21Labs/Parallel-Context-Windows - (107 stars)
    ...
    - AI21Labs/ai21-python - AI21 Python SDK (70 stars)
    - AI21Labs/factor - Code and data for the FACTOR paper (53 stars)
    - AI21Labs/sense-bert - This is the code for loading the SenseBERT model, described in our paper from ACL 2020. (48 stars)
    
  29. Devin
    Thinking

    The crt.sh command is taking too long. Let me check if there's output and also try a different approach. Let me look at their GitHub repos and see if they reference any subdomains or infrastructure.

    get_output(shell_id: 89fd40, timeout: 10000)
    {
      "shell_id": "89fd40",
      "timeout": 10000
    }
    mcp_call_tool(server_name: playwright, tool_name: browser_evaluate, arguments: {"function":"()…)
    {
      "server_name": "playwright",
      "tool_name": "browser_evaluate",
      "arguments": {
        "function": "() => { const links = Array.from(document.querySelectorAll('a[href]')); return links.map(a => a.href).filter(href => href.includes('int21.ai')); }"
      }
    }
    In 1,695Out 129Cache 29,440TTFT 674mstool_calls
  30. OutputNo output yet (still running)
    No output yet (still running)
  31. Output### Result
    ### Result
    [
      "https://int21.ai/privacy/#main-content",
      "https://int21.ai/",
      "https://int21.ai/products/ptx-kernel-factory",
      "https://int21.ai/#swarmos",
      "https://int21.ai/insights",
      "https://int21.ai/#company",
      "https://int21.ai/products/ptx-kernel-factory",
      "https://int21.ai/products/ptx-kernel-factory/",
      "https://int21.ai/products/ptx-kernel-factory/",
      "mailto:info@int21.ai",
      "mailto:info@int21.ai",
      "https://int21.ai/products/ptx-kernel-factory/",
      "mailto:info@int21.ai",
      "https://int21.ai/",
      "https://int21.ai/products/ptx-kernel-factory",
      "https://int21.ai/#swarmos",
      "https://int21.ai/insights",
      "https://int21.ai/#company",
      "https://int21.ai/terms",
      "https://int21.ai/privacy",
      "mailto:info@int21.ai"
    ]
    ### Ran Playwright code
    ```js
    await page.evaluate('() => { const links = Array.from(document.querySelectorAll(\'a[href]\')); return links.map(a => a.href).filter(href => href.includes(\'int21.ai\')); }');
    ```
  32. Devin
    Thinking

    Let me kill the hanging crt.sh process and try a simpler approach. I'll check their DNS records more thoroughly and also look at what their actual infrastructure looks like.

    None

    kill_shell(shell_id: 89fd40)
    {
      "shell_id": "89fd40"
    }
    exec(command: host -t a int21.ai)
    {
      "command": "host -t a int21.ai"
    }
    exec(command: host -t aaaa int21.ai)
    {
      "command": "host -t aaaa int21.ai"
    }
    exec(command: host -t cname www.int21.ai)
    {
      "command": "host -t cname www.int21.ai"
    }
    In 479Out 96Cache 31,104TTFT 652mstool_calls
  33. OutputShell 89fd40 terminated successfully
    Shell 89fd40 terminated successfully
  34. OutputOutput from command in shell 099a7f:
    Output from command in shell 099a7f:
    int21.ai has address 172.67.133.65
    int21.ai has address 104.21.5.94
    
    
    Exit code: 0
  35. OutputOutput from command in shell 84428c:
    Output from command in shell 84428c:
    int21.ai has IPv6 address 2606:4700:3032::ac43:8541
    int21.ai has IPv6 address 2606:4700:3030::6815:55e
    
    
    Exit code: 0
  36. OutputOutput from command in shell 54275d:
    Output from command in shell 54275d:
    Host www.int21.ai not found: 3(NXDOMAIN)
    
    
    Exit code: 1
  37. Devin
    Thinking

    So they're using Cloudflare (based on the IPs and nameservers I saw earlier). Let me check if there are any other subdomains by looking at their actual infrastructure and also check the insights page to see if there are more blog posts or other content.

    mcp_call_tool(server_name: playwright, tool_name: browser_navigate, arguments: {"url":"https:/…)
    {
      "server_name": "playwright",
      "tool_name": "browser_navigate",
      "arguments": {
        "url": "https://int21.ai/insights"
      }
    }
    In 349Out 95Cache 31,488TTFT 833mstool_calls
  38. Output### Ran Playwright code
    ### Ran Playwright code
    ```js
    await page.goto('https://int21.ai/insights');
    ```
    ### Page
    - Page URL: https://int21.ai/insights/
    - Page Title: Blog | INT21
    ### Snapshot
    - [Snapshot](.playwright-mcp/page-2026-07-08T01-23-34-403Z.yml)
  39. Devin
    Thinking

    Let me read the insights page snapshot to see if there are more blog posts or other content listed there.

    None

    read(file_path: .playwright-mcp/page-2026-07-08T01-23-34…)
    {
      "file_path": ".playwright-mcp/page-2026-07-08T01-23-34-403Z.yml"
    }
    In 274Out 56Cache 31,744TTFT 805mstool_calls
  40. Output<file-view path=".playwright-mcp/page-2026-07-08T01-23-34-403Z.yml" start_line="1" end_line="82" tot
    <file-view path=".playwright-mcp/page-2026-07-08T01-23-34-403Z.yml" start_line="1" end_line="82" total_lines="82">
      1|- generic [active] [ref=f6e1]:
      2|  - link "Skip to content" [ref=f6e2] [cursor=pointer]:
      3|    - /url: "#main-content"
      4|  - banner [ref=f6e3]:
      5|    - link "INT21 home" [ref=f6e4] [cursor=pointer]:
      6|      - /url: /
      7|      - generic [ref=f6e5]: INT21
      8|    - navigation "Primary navigation" [ref=f6e6]:
      9|      - link "Product" [ref=f6e7] [cursor=pointer]:
     10|        - /url: /products/ptx-kernel-factory
     11|      - link "SwarmOS" [ref=f6e8] [cursor=pointer]:
     12|        - /url: /#swarmos
     13|      - link "Blog" [ref=f6e9] [cursor=pointer]:
     14|        - /url: /insights
     15|      - link "Company" [ref=f6e10] [cursor=pointer]:
     16|        - /url: /#company
     17|    - link "Request access" [ref=f6e11] [cursor=pointer]:
     18|      - /url: https://forms.gle/XPHW2xTKbTNhbfKe9
     19|      - text: Request access
     20|      - generic [ref=f6e12]: "->"
     21|  - main [ref=f6e13]:
     22|    - generic [ref=f6e14]:
     23|      - paragraph [ref=f6e15]: INT21 / Blog
     24|      - heading "News and insights." [level=1] [ref=f6e16]
     25|      - paragraph [ref=f6e17]:
     26|        - text: Company updates and technical perspectives on self-improving compute infrastructure. For media and analyst queries, contact
     27|        - link "press@int21.ai" [ref=f6e18] [cursor=pointer]:
     28|          - /url: mailto:press@int21.ai
     29|        - text: .
     30|    - region "Articles" [ref=f6e19]:
     31|      - link "A large vertical context window dissolving into a coordinated network of specialized AI agents across compute infrastructure. Engineering / July 7, 2026 Stop Waiting for a Bigger Context Window Bigger context windows don't solve long context; multi-agent orchestration does. Here's how we tackle workloads involving tens of millions of tokens. Read article" [ref=f6e20] [cursor=pointer]:
     32|        - /url: /insights/stop-waiting-for-a-bigger-context-window/
     33|        - img "A large vertical context window dissolving into a coordinated network of specialized AI agents across compute infrastructure." [ref=f6e21]
     34|        - generic [ref=f6e22]:
     35|          - paragraph [ref=f6e23]:
     36|            - text: Engineering /
     37|            - time [ref=f6e24]: July 7, 2026
     38|          - heading "Stop Waiting for a Bigger Context Window" [level=2] [ref=f6e25]
     39|          - paragraph [ref=f6e26]: Bigger context windows don't solve long context; multi-agent orchestration does. Here's how we tackle workloads involving tens of millions of tokens.
     40|          - generic [ref=f6e27]:
     41|            - text: Read article
     42|            - generic [ref=f6e28]: "->"
     43|      - link "A cinematic view of interconnected compute infrastructure. Launch / June 16, 2026 Introducing INT21 and PTX Kernel Factory We are building self-improving AI systems for the software beneath modern AI. Our first product generates and optimizes low-level GPU software, then proves its work with tests and benchmarks. Read article" [ref=f6e29] [cursor=pointer]:
     44|        - /url: /insights/introducing-int21-and-ptx-kernel-factory/
     45|        - img "A cinematic view of interconnected compute infrastructure." [ref=f6e30]
     46|        - generic [ref=f6e31]:
     47|          - paragraph [ref=f6e32]:
     48|            - text: Launch /
     49|            - time [ref=f6e33]: June 16, 2026
     50|          - heading "Introducing INT21 and PTX Kernel Factory" [level=2] [ref=f6e34]
     51|          - paragraph [ref=f6e35]: We are building self-improving AI systems for the software beneath modern AI. Our first product generates and optimizes low-level GPU software, then proves its work with tests and benchmarks.
     52|          - generic [ref=f6e36]:
     53|            - text: Read article
     54|            - generic [ref=f6e37]: "->"
     55|  - contentinfo [ref=f6e38]:
     56|    - generic [ref=f6e39]:
     57|      - link "Return to top" [ref=f6e40] [cursor=pointer]:
     58|        - /url: /
     59|      - paragraph [ref=f6e41]:
     60|        - text: Use compute
     61|        - text: to improve compute.
     62|    - navigation "Footer navigation" [ref=f6e42]:
     63|      - link "Product" [ref=f6e43] [cursor=pointer]:
     64|        - /url: /products/ptx-kernel-factory
     65|      - link "SwarmOS" [ref=f6e44] [cursor=pointer]:
     66|        - /url: /#swarmos
     67|      - link "Blog" [ref=f6e45] [cursor=pointer]:
     68|        - /url: /insights
     69|      - link "Company" [ref=f6e46] [cursor=pointer]:
     70|        - /url: /#company
     71|      - link "Request access" [ref=f6e47] [cursor=pointer]:
     72|        - /url: https://forms.gle/XPHW2xTKbTNhbfKe9
     73|      - link "Terms" [ref=f6e48] [cursor=pointer]:
     74|        - /url: /terms
     75|      - link "Privacy" [ref=f6e49] [cursor=pointer]:
     76|        - /url: /privacy
     77|    - generic [ref=f6e50]:
     78|      - link "info@int21.ai" [ref=f6e51] [cursor=pointer]:
     79|        - /url: mailto:info@int21.ai
     80|      - paragraph [ref=f6e52]:
     81|        - text: © 2026 INT21 AI, Inc.
     82|        - text: All rights reserved.
    </file-view>
  41. Devin
    Thinking

    Good! I found another blog post. Let me now try to use a proper subdomain enumeration tool or technique. Since I don't have specialized tools installed, let me try a few more approaches: 1. Check DNSDumpster 2. Check Wayback Machine for any historical subdomains 3. Check their GitHub repos for any infrastructure references Let me also try a simple DNS wildcard check to see if they have wildcard DNS set up.

    None

    exec(command: host -t a random12345.int21.ai)
    {
      "command": "host -t a random12345.int21.ai"
    }
    web_search(query: site:github.com int21)
    {
      "query": "site:github.com int21"
    }
    web_search(query: "int21.ai" "subdomain" OR "dns" OR "cnam…)
    {
      "query": "\"int21.ai\" \"subdomain\" OR \"dns\" OR \"cname\""
    }
    In 1,723Out 151Cache 32,000TTFT 849mstool_calls
  42. OutputOutput from command in shell fa7cee:
    Output from command in shell fa7cee:
    Host random12345.int21.ai not found: 3(NXDOMAIN)
    
    
    Exit code: 1
  43. Output# Web Search Results for "site:github.com int21"
    # Web Search Results for "site:github.com int21"
    
    ## 1. examples/int21.asm at master · AhmadNaserTurnkeySolutions/emu8086
    URL: https://github.com/AhmadNaserTurnkeySolutions/emu8086/blob/master/examples/int21.asm
    
    # File: AhmadNaserTurnkeySolutions/emu8086/examples/int21.asm
    ...
    ```asm
    ; this sample gets a string from a user, then it prints it out.
    ; this example uses dos interrupt: 21h
    
    name "int21"
    
    org  100h
    
    jmp start
    ...
    ; buffers hold ascii chars for INT 21h/0Ah input function,
    ; first byte is its maximum size, second byte: actual size.
    
    ; format of INT 21h/0Ah input buffer:
    ;  -byte-offset-     -number-of-bytes-             -description- 
    ;      00                  1                        buffer size
    ;      01                  1                        number of characters actually read (excluding cr).
    ;      02             1 to buffer-size              actual buffer contents (including cr). 
    
    s1        db 100,?, 100 dup(' ') 
    t2        db 100,?, 100 dup(' ')
    filename  db 30,?, 30 dup(' ')   ; file name should be in 8.3 - dos compatible format.
    ...
    jmp m1
    ...
    msg1    db  "enter any text: $"
    m1:     mov dx, offset msg1
            mov ah, 9
            int 21h
    ...
    ; input a string:
            mov dx, offset s1
            mov ah, 0ah
            int 21h
    ...
    jmp m2
    ...
    msg2    db  0Dh,0Ah,"enter file name: $"
    ...
    m2:     mov dx, offset msg2
            mov ah, 9
            int 21h
    ...
    ; input filename:
            mov dx, offset filename
            mov ah, 0ah
            int 21h
    ...
    ; set 0 to the end of the filename:
            xor bx, bx
            mov bl, filename[1]  ; get actual size.
            mov filename[bx+2], 0
    ...
    create new file
    ...
    mov cx,
    ...
    , 3ch
            mov dx, offset filename+2
            int 21h
            jc  error
            mov handle, ax
    ...
    ; write buffer to file:
            mov ah, 40h
            mov bx, handle        
            mov dx, offset s1+2
            xor cx, cx
            mov cl, s1[1]
            int 21h
            jc  error
    ...
    close file
            mov bx, handle
            mov ah, 3eh
            int 21h
    ...
    jc error
            
            
            
    ; open existing file:
            mov al, 0     ; read.
            mov ah, 3dh
            mov dx, offset filename+2
            int 21h
            jc  error
            mov handle, ax       
    ; rea...
    
    ## 2. krnl386/int21.c at bd4c7b6c · otya128/winevdm
    URL: https://github.com/otya128/winevdm/blob/bd4c7b6c/krnl386/int21.c
    
    # File: otya128/winevdm/krnl386/int21.c
    ...
    /*
     * DOS interrupt 21h handler
     *
     * Copyright 1993, 1994 Erik Bos
     * Copyright 1996 Alexandre Julliard
     * Copyright 1997 Andreas Mohr
     * Copyright 1998 Uwe Bonnes
     * Copyright 1998, 1999 Ove Kaaven
     * Copyright 2003 Thomas Mertes
     *
    ...
    /*
     * Extended Drive Parameter Block.
     * This structure is compatible with standard DOS4+ DPB and 
     * extended DOS7 DPB.
     */
    typedef struct _INT21_DPB {
        BYTE   drive;                /* 00 drive number (0=A, ...) */
        BYTE   unit;                 /* 01 unit number within device driver */
        WORD   sector_bytes;         /* 02 bytes per sector */
        BYTE   cluster_sectors;      /* 04 highest sector number within a cluster */
        BYTE   shift;                /* 05 shift count to convert clusters into sectors */
        WORD   num_reserved;         /* 06 reserved sectors at beginning of drive */
        BYTE   num_FAT;              /* 08 number of FATs */
        WORD   num_root_entries;     /* 09 number of root directory entries */
        WORD   first_data_sector;    /* 0b number of first sector containing user data */
        WORD   num_clusters1;        /* 0d highest cluster number (number of data clusters + 1) */
        WORD   sectors_per_FAT;      /* 0f number of sectors per FAT */
        WORD   first_dir_sector;     /* 11 sector number of first directory sector */
        SEGPTR driver_header;        /* 13 address of device driver header */
        BYTE   media_ID;             /* 17 media ID byte */
        BYTE   access_flag;          /* 18 0x00 if disk accessed, 0xff if not */
        SEGPTR next;                 /* 19 pointer to next DPB */
        WORD   search_cluster1;      /* 1d cluster at which to start search for free space */
        WORD   free_clusters_lo;     /* 1f number of free clusters on drive or 0xffff if unknown */
        WORD   free_clusters_hi;     /* 21 hiword of clusters_free */
        WORD   mirroring_flags;      /* 23 active FAT/mirroring flags */
        WORD   info_sector;          /* 25 sector number of file s...
    
    ## 3. INT21 0x5D full implementation
    URL: https://github.com/joncampbell123/dosbox-x/issues/4162
    
    # INT21 0x5D full implementation
    ...
    Hi, 
     
    I am using DOSBox-X on a Raspberry Pi 4 to run Windows for Workgroups 3.11 to have an IPX-Server offering an IPX-Share. 
    + It is running inclusive share 
    - Any access to the share is failing 
    Error: DOSMISC:DOS INT21H function 0x5D subfunction 0x00 not implemented 
    1. I volunteer for the implementation 
    2. I am lacking any documentation of the function 0x5D 
     
    Is anybody able to support me with a detailed documentation of the function 0x5D? 
     
    BR Yogi-baer 
    P.S.: No misspelling, just the German writing :-)
    ...
    > Int21 function 5D are file sharing functions for networking. Maybe an issue with SHARE?
    > 
    > e.g.
    > http://osfree.org/doku/en:docs:dos:api:int21:5d
    > 
    > But it does not mention a subfunction 00.
    ...
    > Hey rderooy,
    > 
    > thank you for your response.
    > 
    > I am sure that it is an issue with SHARE. And it does mention a subfunction 00:
    > https://stanislavs.org/helppc/int_21-5d.html
    > But this documentation is not helpful for implementation. Therefor I am looking for a more detailed one.
    > Perhaps someone is having the "DOS Programmers Reference" version 5.
    > 
    > BR Yogi-baer
    ...
    > You don't have to disassemble anything, the source code for MS-DOS 6 is out there and ah=5D can be found inside dos\srvcall.asm
    ...
    > You will have to find the source code yourself. DOS 1.x, 2.0, 3.3 and 6.x is all out there. Just google it. Alterantively FreeDOS will most likely also have an implemention that is a good reference. "srvcall.asm" is the name inside the DOS source code.
    ...
    > I am still active on this issue.
    > I did not find any source code for this undocumented function of MS-DOS.
    > Debuggers like CodeView don't step into INT21h.
    > I did not find THE point inside DOSBox-X to trace an installed MS-DOS 6.22.
    > So I started to write a DOS-Programm (MASM 6.0A) to dig deeper into this on a physical PC (Pentium with physical RS232) with debug output via INT14h.
    > So far it is working, but it still takes time to get forward.
    > I am open...
    
    ## 4. Problem with Int21 0x5A Create unique file · Issue #2274 · joncampbell123/dosbox-x
    URL: https://github.com/joncampbell123/dosbox-x/issues/2274
    
    ## Problem with Int21 0x5A Create unique file
    ...
    We have a program which uses Int 21 AH=0x5A to create unique/temporary files. There appear to be two problems with DOSBox-X:
    ...
    The filename generation isn't random. The order is the same every time DOSBox-X is started. I think this is because the random seed isn't initialised before creating the random name.
    ...
    The other problem is, if I open two copies of DOSBox-X and make an Int 21 call to create a unique file in the same location (same mount point) then the second copy overwrites the first file.
    ...
    I can see that DOS_CreateTempFile() is what gets called to handle the Int 21 call, and this does appear to check for existing files, but the file does get overwritten.
    ...
    I don't know a simple way to call Int 21 from DOS, but I hope that's enough information to reproduce the problem.
    ...
    > Thanks for reporting this! It is hopefully fixed in #2276.
    ...
    > Wonderful, that does work here. (I even made initRand() return before calling srand() so I could check that it doesn't overwrite existing files.)
    > Thanks!
    
    ## 5. Int21-AI/KDA-H100
    URL: https://github.com/Int21-AI/KDA-H100
    
    # Int21-AI/KDA-H100
    ...
    > One of the first four open-source GPU implementations produced by
    > [INT21's PTX Kernel Factory](https://int21.ai).
    ...
    `flashkda` is a FlashKDA-compatible forward implementation of Kimi Delta
    Attention (KDA) for NVIDIA Hopper (`sm_90a`). It is built with standalone CUDA
    C++ and inline PTX and was validated on an NVIDIA GH200 on June 8, 2026.
    ...
    PTX Kernel Factory
    ...
    [PTX Kernel Factory](https://int21.ai) is INT21's system for generating and
    improving low-level NVIDIA GPU software. Human engineers define the operation,
    correctness requirements, target hardware, and success metric. The factory
    coordinates multiple AI agents to generate candidates, compile them, reject
    incorrect results, benchmark valid implementations, and carry useful evidence
    into the next round.
    ...
    of the first public release:
    ...
    | Workload | NVIDIA Hopper | NVIDIA Blackwell |
    | --- | --- | --- |
    | Kimi Delta Attention | **This repository** | [KDA-B200](https://github.com/Int21-AI/KDA-B200) |
    | RMSNorm | [RMSNorm-H100](https://github.com/Int21-AI/RMSNorm-H100) | [RMSNorm-B200](https://github.com/Int21-AI/RMSNorm-B200) |
    ...
    PTX Kernel Factory is in beta. Learn more and request early access at
    [int21.ai](https://int21.ai).
    ...
    The CUDA implementation is packaged under a distinct extension name,
    `flashkda_C`, so it can coexist with the original `FlashKDA` extension during
    comparison runs.
    ...
    MIT. See [`LICENSE`](LICENSE) and [`NOTICE`](NOTICE) for INT21 and upstream
    attribution.
    
  44. Output# Web Search Results for ""int21.ai" "subdomain" OR "dns" OR "cname""
    # Web Search Results for ""int21.ai" "subdomain" OR "dns" OR "cname""
    
    ## 1. INT21 | Self-Improving Compute Infrastructure
    URL: https://int21.ai/
    
    INT21 | Self-Improving Compute Infrastructure
    ...
    INT21 builds self-improving AI systems for the software beneath modern AI. Our first product generates and optimizes low-level GPU software, then proves its work with tests and benchmarks.
    ...
    INT21
    ...
    INT21
    ...
    ## Introducing INT21 and PTX Kernel Factory
    ...
    We are building self-improving AI systems for the software beneath modern AI. The first four implementations produced by PTX Kernel Factory are open source, and the product is entering beta.
    ...
    package, and
    ...
    MXNet and AITemplate. Before founding INT21,
    ...
    a Distinguished Engineer at NVIDIA following its acquisition of HippoML, the
    ...
    company he founded.
    
    ## 2. int21.dev - bgp.he.net
    URL: https://bgp.he.net/dns/int21.dev
    
    int21.dev - bgp.he.net
    ...
    # int21.dev
    ...
    - DNS
    - Certs
    - Website Info
    - IP Info
    - Whois
    - RDAP
    ...
    tech.key-systems.net
    ...
    | --- | --- | --- | --- |
    ...
    09.230
    ...
    224
    ...
    29 | AS197071
    ...
    230
    ...
    224
    ...
    109
    ...
    active 1 GmbH
    ...
    | 2a0
    ...
    :bec0:1
    
    ## 3. int.ai - DNS Lookup
    URL: https://robtex.com/en/dns-lookup/ai/int
    
    int.ai - DNS Lookup
    ...
    int.ai
    ...
    ## int.ai
    ...
    ## 🔍 DNS Trace
    ...
    | Zone | Nameservers | Glue |
    | --- | --- | --- |
    | ai | v2n1.nic.ai, v0n2.nic.ai, v0n0.nic.ai, v0n1.nic.ai... | - |
    | int.ai | ns4.afternic.com, ns3.afternic.com | - |
    ...
    Server:`173.201.66.65`
    ...
    NS records: ns4.afternic.com, ns3.afternic.com
    ...
    No DS record for int.ai (unsigned zone)
    ...
    | Type | Count | Sample Data |
    | --- | --- | --- |
    | A | 2 | `13.248.169.48, 76.223.54.146` |
    | NS | 2 | `ns3.afternic.com, ns4.afternic.com` |
    | MX | 1 | `. (pri: 0)` |
    | TXT | 1 | `v=spf1 -all` |
    | SOA | 1 | `ns3.afternic.com dns.jomax.net` |
    ...
    ai`int.` points to two IP numbers: 13.248.169.48 and 76.223.54.146.
    
    ## 4. 
    URL: https://intodns.ai/llm/api.md
    
    # IntoDNS.AI API - Reference for LLM Integration
    ...
    is optimized for
    ...
    , agents, monitors, and
    ...
    Canonical boundary: IntoDNS.ai API endpoints are hosted only under `https://intodns.ai/api/...`. Do not call or cite `https://api.intodns.io/v1/domain/{domain}`, `https://api.intodns.io/v1/domain/example.com`, or `https://intodns.io/api-docs/v1` as IntoDNS.ai. Those URLs are not IntoDNS.ai API endpoints.
    ...
    lists, sender requirements,
    ...
    , and preferred citations.
    ...
    with timestamp and content hash.
    ...
    ### DNS Lookup
    ...
    ```text
    GET /dns/lookup?domain={domain}&type={recordType}
    ```
    ...
    Record types: A, AAAA, MX, TXT, NS, CNAME, SOA, CAA.
    ...
    5. Use `/
    ...
    /snapshot` when
    ...
    URL, fixed evidence,
    ...
    -ticket proof, or
    ...
    a ticket/
    ...
    6. Use `/api/email/fcrdns` when the user asks about PTR, reverse DNS, FCrDNS, clustered mail servers, or mail-server hostname trust.
    ...
    7. Use specialist endpoints only when the user asks for a specific DNS, email, DNSSEC, BIMI, MTA-STS, SMTP STARTTLS, TLSA, blacklist, sender-requirements, or SPF graph detail.
    
    ## 5. Macmod/STARS
    URL: https://github.com/Macmod/STARS
    
    A multi-cloud DNS record scanner that aims to help cybersecurity/IT analysts identify dangling CNAME records in their cloud DNS services that could possibly lead to subdomain takeover scenarios.
    ...
    Forks: 6
    ...
    - Watchers: 3
    ...
    Primary language:
    ...
    - Languages:
    ...
    -takeover
    ...
    3, scanner, security, security-research, security-tools,
    ...
    subdomain-takeover, takeover
    ...
    : 20
    ...
    3-02-1
    ...
    T14:37:42Z
    ...
    push: 202
    ...
    -17T19:09:4
    ...
    Z
    - Contributors:
    ...
    - Latest release:
    ...
    ⭐ **STARS** ⭐ is a multi-cloud DNS record scanner that aims to help cybersecurity/IT analysts identify dangling CNAME records in their cloud DNS services that could possibly lead to subdomain takeover scenarios.
    ...
    This is a small tool that uses some of the takeover ideas from [can-i-take-over-xyz](https://github.com/EdOverflow/can-i-take-over-xyz/) for defensive purposes in cloud environments. For each CNAME domain registered in a cloud environment, the tool generates **takeover factors** (factors that could indicate a subdomain takeover scenario) and **mitigation factors** (factors that possibly mitigate that scenario). The factors identified by this tool **should not be taken as definitive proof** of a subdomain takeover scenario on a domain, but rather **that a domain should be reviewed**.
    ...
    Subdomain takeovers are complex issues that often happen because of a lack of appropriate processes of management/review in DNS zones, which is a common issue in large corporations. This tool can be used to find possible takeover issues in cloud DNS environments which host multiple zones with large record sets.
    ...
    - **DNS_NXDOMAIN** - The target domain resolves as NXDOMAIN
    - **WEB_NOTFOUND** - The target domain returns a 404
    - **WEB_FINGERPRINT** - The page at the target domain contains patterns related to a decomissioned page (such as "isn't available" or "doesn't exist")
    ...
    - **PRIVATE_ZONE** - The zone where the source domain is hosted is private
    - **AZURE_VERIFICATION_TXT** - There is a TX...
    
  45. Devin
    Thinking

    I found that int21.dev exists from the bgp.he.net result. Let me check that and also try a few more approaches to find subdomains. Let me also check if there are any other domains they might own.

    exec(command: host -t a int21.dev)
    {
      "command": "host -t a int21.dev"
    }
    exec(command: host -t aaaa int21.dev)
    {
      "command": "host -t aaaa int21.dev"
    }
    web_search(query: "int21" domain registration whois)
    {
      "query": "\"int21\" domain registration whois"
    }
    In 4,242Out 95Cache 33,664TTFT 715mstool_calls
  46. OutputOutput from command in shell 5cc98d:
    Output from command in shell 5cc98d:
    int21.dev has address 109.230.224.29
    
    
    Exit code: 0
  47. OutputOutput from command in shell fdd913:
    Output from command in shell fdd913:
    int21.dev has IPv6 address 2a05:bec0:1:1::23
    
    
    Exit code: 0
  48. Output# Web Search Results for ""int21" domain registration whois"
    # Web Search Results for ""int21" domain registration whois"
    
    ## 1. Web stats for Int21  - int21.com
    URL: https://int21.com.clearwebstats.com/
    
    int21
    ...
    ## Domain Information for int21.com
    ...
    |Domain Registrar:|MEGAZONE CORP. DBA HOSTING.KR[![int21.com registrar info](https://www.clearwebstats.com/assets/img/more.gif)](https://www.clearwebstats.com/registrar/megazone-corp.-dba-hosting.kr/)|
    ...
    Registration Date:|2008-01-211 decade 6 years 5 months ago|
    Last Modified:|2017-03-027 years 4 months 2 days ago|
    Expiration Date:|2018-01-216 years 5 months 1 week ago|
    Domain Status:|clientTransferProhibited https://icann.org/epp#clientTransferProhibited|
    ...
    ## Full WHOIS Lookup for int21.com
    ...
    Domain Name: int21.com
    ...
    Registry Domain ID: 1384198336\_DOMAIN\_COM-VRSN
    ...
    Registrar WHOIS Server: whois.hosting.kr
    ...
    Registrar URL: http://www.hosting.kr
    ...
    Updated Date: 09-Mar-2017
    ...
    Creation Date: 21-Jan-2008
    ...
    Registrar Registration Expiration Date: 21
    ...
    Jan-2018
    ...
    Registrar: Megazone Corp., dba HOSTING.KR
    ...
    Domain Status: OK
    
    ## 2. Int21.de - AboutUs
    URL: https://aboutus.com/Int21.de
    
    Int21.de - AboutUs
    ...
    #### Domain Whois
    ...
    WHOIS information for Int21.de
    ...
    Powered by who.is
    ...
    #### Domain Whois
    ...
    WHOIS information for Int21.de
    ...
    Powered by who.is
    ...
    Int21
    
    ## 3. Int21.co.jp website. Int21 Home Page.
    URL: http://websites.milonic.com/int21.co.jp
    
    Int21.co.jp website. Int21
    ...
    ### Domain info
    ...
    | Location: | Japan |
    | --- | --- |
    | Owned by: | Kimura, Tadafumi (Int21 Corp.) |
    | Hosted by: | Int21 Corp. |
    | Registered by: | Japan Registry Services |
    | Subnetworks: | 211.5.130.179 |
    ...
    #### Whois
    
    ## 4. int21.dev - bgp.he.net
    URL: https://bgp.he.net/dns/int21.dev
    
    int21.dev - bgp.he.net
    ...
    # int21.dev
    ...
    - DNS
    - Certs
    - Website Info
    - IP Info
    - Whois
    - RDAP
    ...
    tech.key-systems.net
    ...
    | IPs | Origin AS | Announcement | Description |
    | --- | --- | --- | --- |
    | 109.230.224.29 | AS197071 | 109.230.224.0/20 | active 1 GmbH |
    | 109.230.224.29 | AS197071 | 109.230.224.0/24 | active 1 GmbH |
    | 2a05:bec0:1:1::23 | AS197071 | 2a05:bec0::/29 | active 1 GmbH |
    ...
    ```
    Loading whois...
    
    ## 5. WHOIS Lookup — [0x]INT (OxINT) OSINT Tool
    URL: https://oxint.io/tools/whois-lookup/
    
    WHOIS Lookup — [0x]INT (OxINT) OSINT Tool
    ...
    # WHOIS Lookup — Domain Registration & Owner Data
    ...
    Query domain registration data — registrar, dates, nameservers, status
    ...
    This free WHOIS Lookup queries live registration records for any domain name and returns the registrar, creation and expiry dates, last-updated date, registrant and country fields, nameservers, and domain status codes. Rather than reading raw text WHOIS, the tool resolves data through RDAP (the Registration Data Access Protocol), the modern, structured successor to legacy WHOIS that most registries and registrars now serve. The result is clean, machine-parsed domain registration and owner data presented in a readable card. As a free WHOIS lookup tool, it is built for fast triage rather than bulk export, so each query returns one domain's registration record at a time.
    ...
    Enter a bare domain such as example.com and run the lookup. Compare the Registered date against the context you are investigating, check whether Expires is imminent, and note the Nameservers to identify the hosting or DNS provider. Many domains now show redacted registrant fields due to GDPR and privacy services — an empty registrant is normal and not itself suspicious. Treat WHOIS as one corroborating layer alongside DNS, SSL Certificate Transparency, and historical archives.
    ...
    WHOIS is the original text-based protocol for querying domain registration data, while RDAP returns the same information as standardised JSON with consistent fields and access controls. This tool uses RDAP where available, so the registrar, dates, and nameservers are parsed reliably rather than scraped from free-form text.
    ...
    Most generic TLDs (.com, .net, .org, .io) and many country-code TLDs expose RDAP or WHOIS data. Coverage and the depth of returned fields vary by registry — some ccTLDs publish minimal data or none at all, in which case fewer fields will appear in the result card.
    
  49. Devin
    Thinking

    So I found int21.dev is a different domain owned by a different company (active 1 GmbH in Germany). The int21.com domain is also unrelated (parked domain from Korea). Let me focus on int21.ai and try to use some proper subdomain enumeration techniques. Since I don't have specialized tools installed, let me try a different approach - check securitytrails, virustotal, or other online sources that might have indexed their subdomains.

    web_search(query: securitytrails int21.ai subdomains)
    {
      "query": "securitytrails int21.ai subdomains"
    }
    web_search(query: crt.sh int21.ai certificates)
    {
      "query": "crt.sh int21.ai certificates"
    }
    In 1,337Out 129Cache 37,888TTFT 668mstool_calls
  50. Output# Web Search Results for "securitytrails int21.ai subdomains"
    # Web Search Results for "securitytrails int21.ai subdomains"
    
    ## 1. Securitytrails :: Knowledge Base
    URL: https://kb.offsec.nl/tools/osint/securitytrails/
    
    ### Gather subdomains
    ...
    ```
    curl --request GET \
      --url 'https://api.securitytrails.com/v1/domain/<DOMAIN-HERE>/subdomains?children_only=false' \
      --header 'APIKEY: <KEY-HERE>' \
      --header 'Accept: application/json'
    
    ```
    ...
    ### Extract Subdomains using jq
    ...
    This requires jq to be installed.
    ...
    ```
    jq '.subdomains[]' securitytrails.json
    
    ```
    
    ## 2. 
    URL: https://www.withone.ai/knowledge/security-trails/conn_mod_def%3A%3AGLGCKO1cakA%3A%3AwlniD9fuRnmR6a--5xnZXw
    
    ---
    description: List Subdomains for a Domain in SecurityTrails: HTTP method, parameters, and request and response schema with tested usage examples. Open API knowledge for…
    ...
    List Subdomains for a Domain
    ...
    for a Domain
    ...
    # List Subdomains for a Domain
    ...
    `https://api.securitytrails.com/v1/domain/{{hostname}}/subdomains`
    ...
    Returns subdomains for a given hostname.
    ...
    * The `hostname` path parameter **must always be present**.
    * Always construct the path as `/v1/domain/{{hostname}}/subdomains`, where `{{hostname}}` is a **non-empty string**.
    * Do **not** call the API with a missing or empty `hostname`.
    * When executing the action, ensure to send "Path Parameters" in the URL and not in the body.
    * When executing the action, ensure to send "Query Parameters" in the URL as query parameters and not in the body.
    ...
    `/v1/domain/example.com/subdomains /v1/domain/securitytrails.com/subdomains`
    ...
    ## Required Path Parameters
    ...
    | Parameter | Type | Description |
    | --------- | ------ | ---------------------------------------------------------------------------------- |
    | hostname | string | The hostname to retrieve subdomains for. Send this as a path parameter in the URL. |
    ...
    `{ "subdomains": [ "api", "em", "mail", "www" ] }`
    ...
    | Field | Type | Description |
    | ---------- | ------ | ---------------------------------------------------------------------------------- |
    | subdomains | array | Array of subdomain strings for the requested hostname. |
    | message | string | Error message describing why the request was invalid. Present in the 400 response. |
    ...
    securitytrails.com/v1/domain/example.com/subdomains' \ --header '
    ...
    : application/json'`
    ...
    ## Example Usage
    ...
    ### Example 1: List subdomains for example.com
    ...
    `curl --request GET \ --url 'https://api.securitytrails.com/v1/domain/example.com/subdomains' \ --header 'Accept: application/json'`
    ...
    ### Example 2: List subdomains for securitytrails.com
    ...
    `curl --request GET \ --url 'https://api.securitytrails...
    
    ## 3. pysecuritytrails v0.1.3
    URL: https://pypi.org/project/pysecuritytrails/
    
    infos = st.domain_info('securitytrails.com')
    subdomains = st.domain_subdomains('securitytrails.com')
    tags = st.domain_tags('securitytrails.com')
    whois = st.domain_whois('securitytrails.com')
    history_dns = st.domain_history_dns('securitytrails.com')
    history_whois = st.domain_history_whois('securitytrails.com')
    ```
    ...
    - `domain_subdomains(HOSTNAME)`: [Returns subdomains for a given hostname](https://docs.securitytrails.com/v1.0/reference#list-subdomains)
    
    ## 4. SecurityTrails | Cortex XSOAR
    URL: https://xsoar.pan.dev/docs/reference/integrations/security-trails
    
    ### securitytrails-get-subdomains#
    ...
    Returns child and sibling subdomains for a given hostname.
    ...
    #### Base Command#
    ...
    `securitytrails-get-subdomains`
    ...
    | Argument Name | Description | Required |
    | --- | --- | --- |
    | hostname | The hostname. | Required |
    | children_only | Only return children subdomains. Possible values are: true, false. Default is true. | Optional |
    ...
    | Path | Type | Description |
    | --- | --- | --- |
    | SecurityTrails.Domain.name | string | Hostname |
    | SecurityTrails.Domain.subdomains | unknown | Subdomains |
    | Domain.Name | string | Domain name |
    | Domain.Subdomains | string | Subdomains |
    | SecurityTrails.Domain.subdomain_count | number | Subdomain Count |
    ...
    Path | Type | Description |
    ...
    | --- | --- | --- |
    ...
    | Domain.Name | String | The domain name
    ...
    example: "google.com". |
    | Domain.DNS | String | A list of IP objects resolved by DNS. |
    | Domain.DomainStatus | Datte | The status of the domain. |
    | Domain.NameServers | Unknown | (List) Name servers of the domain. |
    | Domain.Organization | String | The organization of the domain. |
    | Domain.Subdomains | Unknown | (List) Subdomains of the domain. |
    
    ## 5. Edr4/securitytrails-python-wrapper
    URL: https://github.com/Edr4/securitytrails-python-wrapper
    
    parser = argparse.ArgumentParser(description='Query the SecurityTrails API for subdomains')
    parser.add_argument('-d', '--domain', required=True, help='The domain to query')
    args = parser.parse_args()
    
    url = f'https://api.securitytrails.com/v1/domain/{args.domain}/subdomains'
    headers = {'apikey': '{{API_KEY}}'}
    
    response = requests.get(url, headers=headers)
    
    result = []
    ...
    def dig_check_a_domain(domain):
        try:
            output = subprocess.check_output(['dig', '+short', domain])
            output = output.decode('utf-8').strip().split('\n')
            if output:
                result.append(domain)
        except subprocess.CalledProcessError:
            print(f"Error occurred while checking {domain}.")
    ...
    if response.ok:
        data = json.loads(response.text)
        subdomains = data['subdomains']
        for subdomain in subdomains:
            domain = subdomain + "." + args.domain
            dig_check_a_domain(domain)
    else:
        print(f'Request failed with status {response.status_code}: {response.text}')
    ...
    for domain in result:
        print(domain)
    
  51. Output# Web Search Results for "crt.sh int21.ai certificates"
    # Web Search Results for "crt.sh int21.ai certificates"
    
    ## 1. crt.sh | Certificate Search
    URL: https://crt.sh/?a=1
    
    crt.sh | Certificate Search
    ...
    | Select search type: CERTIFICATE crt.sh ID CT Entry ID Serial Number Subject Key Identifier SHA-1(SubjectPublicKeyInfo) SHA-256(SubjectPublicKeyInfo) SHA-1(Subject) SHA-1(Certificate) SHA-256(Certificate) CA ID Name IDENTITY commonName (Subject) emailAddress (Subject) organizationalUnitName (Subject) organizationName (Subject) dNSName (SAN) rfc822Name (SAN) iPAddress (SAN) | Select linting options: cablint x509lint zlint keylint ALL 1-week Summary Issues |
    | --- | --- |
    
    ## 2. int21.dev - bgp.he.net
    URL: https://bgp.he.net/dns/int21.dev
    
    int21.dev - bgp.he.net
    ...
    # int21.dev
    ...
    - DNS
    - Certs
    ...
    - Website Info
    ...
    - IP Info
    ...
    024121902
    ...
    ```
    Certificate Transparency Statistics
    ...
    Total Certificates: 0
    ...
    #### Certificate Transparency Statistics
    ...
    Searching certificates...
    ...
    ```
    Search Results (click row for details)
    ...
    | Valid From | Valid To | Status | Issuer / Serial | CT Logs | SANs | Count |
    | --- | --- | --- | --- | --- | --- | --- |
    
    ## 3. How to monitor all possibilities
    URL: https://groups.google.com/g/crtsh/c/IYrB12mUugQ
    
    Hi. Please try this: https://crt.sh/?q=mydomain
    ...
    https://crt.sh/ has to limit the size of result sets for performance reasons; and since I haven't found any way to get Full Text Search to sort the results, it only gives you a random subset of the full result set.
    ...
    Browse to https://crt.sh/?q=mydomain%25&showSQL=y and look at the bottom of the page to see the SQL query it uses. ($1 is replaced with 'mydomain:*').
    ...
    To get the IDs of all certificates in the full result set for "mydomain", try this:
    ...
    psql -h crt.sh -p 5432 -U guest -d certwatch -q -c "SELECT c.ID FROM certificate c WHERE to_tsquery('certwatch', 'mydomain:*') @@ identities(c.CERTIFICATE)" -o output.txt
    ...
    You can do that like this:
    ...
    psql -h crt.sh -p 5432 -U guest -d certwatch -q -c "SELECT c.ID, x509_commonName(c.CERTIFICATE) FROM certificate c WHERE to_tsquery('certwatch', 'mydomain:*') @@ identities(c.CERTIFICATE)" -o output.txt
    ...
    Access to crt.sh:5432 has been available for several years already and we have no plans to discontinue this service.
    ...
    sh:5432 can only handle a certain number
    ...
    concurrent connections, and sometimes all of the connection slots are in use.
    ...
    How is it possible to modify this query to return everything with 'mydomain' regardless of whether it's a prefix or not? Admittedly, I don't know Postgres very well, but from what I gather, `to_tsquery('certwatch', 'mydomain')` should work, but it returns far fewer matches, including some that don't contain `mydomain` at all.
    ...
    I'm afraid there aren't currently any suitable indexes to support that kind of search.
    
    ## 4. crt.sh | gen.ai
    URL: https://crt.sh/?CN=gen.ai&match=%3D
    
    crt.sh | gen.ai
    ...
    | crt.sh ID | Logged At⇧ | Not Before | Not After | Issuer Name |
    | --- | --- | --- | --- | --- |
    ...
    26724107353 |
    ...
    2026-05-29 | 2026-05-29 | 2026-08-26 | C=GB, O=Sectigo Limited, CN=Sectigo Public Server Authentication CA DV E36 |
    
    ## 5. GitHub - alpernae/crtintel: Passive Certificate Transparency recon using crt.sh, with optional DNS resolution and ASN/CIDR enrichment. · GitHub
    URL: https://p.rst.im/q/github.com/alpernae/crtintel
    
    GitHub - alpernae/crtintel: Passive Certificate Transparency recon using crt.sh, with optional DNS resolution and ASN/CIDR enrichment. · GitHub
    ...
    Passive Certificate Transparency recon using`crt.sh`, with optional DNS resolution and ASN/CIDR enrichment.
    ...
    ```
    crtintel summary
    ================
    
    Status               : Fetching crt.sh JSON
    Current domain        : hackerone.com
    Output directory      : crtintel-output
    
    Raw crt.sh responses : 0
    Certificate rows     : 0
    Unique subdomains    : 0
    Wildcard identities  : 0
    Resolved DNS records : 0
    Unique IPv4s         : 0
    ASN rows             : 0
    Unique CIDR prefixes : 0
    ...
    crtintel.sh
    ...
    d hackerone
    ...
    Basic CT/subdomain/cert pull:
    ...
    ```
    ./crtintel.sh -d hackerone.com
    ...
    With DNS resolution:
    ...
    ```
    ./crtintel.sh -d hackerone.com -r
    ...
    With DNS + ASN/CIDR enrichment:
    ...
    ```
    ./crtintel.sh -d hackerone.com -r -a
    ```
    ...
    Multiple domains:
    ...
    ```
    ./crtintel.sh -l roots.example.txt -o output/crtintel -r -a
    ...
    ```
    crtintel-output/
    ├── raw/
    │   └── hackerone.com.json
    ├── certs.tsv
    ├── subdomains.txt
    ├── wildcards.txt
    ├── resolved.tsv
    ├── ips.txt
    ├── asn.tsv
    ├── cidrs.txt
    └── summary.txt
    ...
    Passive Certificate Transparency recon using crt.sh, with optional DNS resolution and ASN/CIDR enrichment.
    
  52. Devin
    Thinking

    Let me try a direct approach with crt.sh by using their web interface properly and also try to check if there are any subdomains through other means. Let me also check their robots.txt and sitemap.xml if they exist.

    None

    exec(command: curl -s https://crt.sh/?q=%.int21.ai&out…)
    {
      "command": "curl -s https://crt.sh/?q=%.int21.ai&output=json"
    }
    exec(command: curl -s https://int21.ai/robots.txt)
    {
      "command": "curl -s https://int21.ai/robots.txt"
    }
    exec(command: curl -s https://int21.ai/sitemap.xml)
    {
      "command": "curl -s https://int21.ai/sitemap.xml"
    }
    In 2,835Out 111Cache 39,168TTFT 760mstool_calls
  53. OutputOutput from command in shell 102c4a:
    Output from command in shell 102c4a:
    
    
    Exit code: 0
  54. OutputOutput from command in shell f40592:
    Output from command in shell f40592:
    User-agent: *
    Allow: /
    
    Sitemap: https://int21.ai/sitemap-index.xml
    
    
    Exit code: 0
  55. OutputOutput from command in shell 43ba09:
    Output from command in shell 43ba09:
    
    
    Exit code: 0
  56. Devin
    Thinking

    Great! They have a sitemap. Let me check the sitemap-index.xml to see all their pages.

    None

    exec(command: curl -s https://int21.ai/sitemap-index.x…)
    {
      "command": "curl -s https://int21.ai/sitemap-index.xml"
    }
    In 204Out 45Cache 41,984TTFT 701mstool_calls
  57. OutputOutput from command in shell 19cd11:
    Output from command in shell 19cd11:
    <?xml version="1.0" encoding="UTF-8"?><sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://int21.ai/sitemap-0.xml</loc></sitemap></sitemapindex>
    
    Exit code: 0
  58. Devin
    Thinking

    Let me check the actual sitemap to see all the pages.

    None

    exec(command: curl -s https://int21.ai/sitemap-0.xml)
    {
      "command": "curl -s https://int21.ai/sitemap-0.xml"
    }
    In 197Out 37Cache 42,112TTFT 598mstool_calls
  59. OutputOutput from command in shell b3ff56:
    Output from command in shell b3ff56:
    <?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><url><loc>https://int21.ai/</loc></url><url><loc>https://int21.ai/cookie/</loc></url><url><loc>https://int21.ai/insights/</loc></url><url><loc>https://int21.ai/insights/introducing-int21-and-ptx-kernel-factory/</loc></url><url><loc>https://int21.ai/insights/stop-waiting-for-a-bigger-context-window/</loc></url><url><loc>https://int21.ai/join-beta/</loc></url><url><loc>https://int21.ai/privacy/</loc></url><url><loc>https://int21.ai/products/ptx-kernel-factory/</loc></url><url><loc>https://int21.ai/refund/</loc></url><url><loc>https://int21.ai/terms/</loc></url></urlset>
    
    Exit code: 0
  60. Devin
    Thinking

    Perfect! Now I have a complete list of all the pages from their sitemap. Let me also check if there are any subdomains by trying a few more common ones and also checking if they have any other infrastructure.

    exec(command: for sub in go status dashboard console a…)
    {
      "command": "for sub in go status dashboard console api app grafana prometheus alertmanager kibana elasticsearch rabbitmq redis postgres mysql admin dev staging test; do host -t a $sub.int21.ai 2>/dev/null | grep -v \"not found\"; done"
    }
    mcp_call_tool(server_name: playwright, tool_name: browser_navigate, arguments: {"url":"https:/…)
    {
      "server_name": "playwright",
      "tool_name": "browser_navigate",
      "arguments": {
        "url": "https://int21.ai/join-beta/"
      }
    }
    In 433Out 150Cache 42,240TTFT 596mstool_calls
  61. OutputOutput from command in shell 49b9dd:
    Output from command in shell 49b9dd:
    
    
    Exit code: 1
  62. Output### Ran Playwright code
    ### Ran Playwright code
    ```js
    await page.goto('https://int21.ai/join-beta/');
    ```
    ### Page
    - Page URL: https://docs.google.com/forms/d/e/1FAIpQLSfPo54dFR-lphyCizuUGzvxvT8F9TTjEHFKMUwZqI2tMojWqQ/viewform?pli=1
    - Page Title: INT21 PTX Kernel Factory Beta Access Application
    ### Snapshot
    - [Snapshot](.playwright-mcp/page-2026-07-08T01-23-53-998Z.yml)
    ### Events
    - New console entries: .playwright-mcp/console-2026-07-08T01-23-50-563Z.log#L1-L6
  63. Devin
    Thinking

    The join-beta page redirects to a Google Form. Let me now compile what I've found. Based on my investigation, here's what I've discovered: **Subdomains:** - int21.ai (main domain, no subdomain) - No other subdomains found (no www, api, admin, etc.) **Pages from sitemap:** - https://int21.ai/ (homepage) - https://int21.ai/cookie/ - https://int21.ai/insights/ - https://int21.ai/insights/introducing-int21-and-ptx-kernel-factory/ - https://int21.ai/insights/stop-waiting-for-a-bigger-context-window/ - https://int21.ai/join-beta/ (redirects to Google Form) - https://int21.ai/privacy/ - https://int21.ai/products/ptx-kernel-factory/ - https://int21.ai/refund/ - https://int21.ai/terms/ **Infrastructure:** - Uses Cloudflare for DNS and hosting - Google Workspace for email (G Suite) - No wildcard DNS - No common subdomains (www, api, admin, etc.) configured **Other domains:** - int21.dev exists but appears to be owned by a different company (active 1 GmbH in Germany) - int21.com is a parked domain owned by a Korean entity Let me provide a comprehensive summary to the user.

    Based on my investigation, here's what I found for int21.ai:

    Subdomains

    No subdomains discovered - only the root domain int21.ai exists. Common subdomains like www, api, admin, dev, staging, etc. are not configured.

    Pages (from sitemap.xml)

    Infrastructure

    • DNS: Cloudflare (mona.ns.cloudflare.com, hassan.ns.cloudflare.com)
    • Hosting: Cloudflare (IPs: 172.67.133.65, 104.21.5.94)
    • Email: Google Workspace (aspmx.l.google.com MX records)
    • No wildcard DNS configured
    • No common subdomains (www, api, admin, etc.) resolve

    Related Domains

    • int21.dev - Different owner (active 1 GmbH, Germany) - not related to INT21 AI
    • int21.com - Parked domain (Korean registrar) - not related to INT21 AI

    The company appears to have a minimal web footprint with only the root domain and no subdomain infrastructure.

    In 390Out 714Cache 42,624TTFT 516ms