Cyberwise Netsec logo

Cyberwise Netsec

Organization
zenobi-us
cyberwise-netsec

Turn NetSec's diagnostic log into places you can stand - parse the GAP lines it writes for networks with no way in, cluster them into candidate access-point sites, and write them as CETMonkey teleport waypoints. Use when asked where NetSec found holes in the world, to plan where to place access points, or to generate teleport waypoints from a NetSec log.

Overview

Publisherzenobi-us
Repositorydotfiles
Skill namecyberwise-netsec
Stars
67
Forks
6
Bundled files
2
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 2 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by zenobi-us on GitHub. Read the source before you install it.

Installation

Install the Cyberwise Netsec AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/zenobi-us/dotfiles.git /tmp/dotfiles
mkdir -p .claude/skills
cp -r /tmp/dotfiles/files/devtools/agent/bundles/developer/skills/game-dev/cyberwise-netsec .claude/skills/cyberwise-netsec
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Cyberwise Netsec in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Cyberwise Netsec on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Cyberwise Netsec is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Cyberwise: NetSec coverage gaps

Verified: Cyberpunk 2077 patch 2.31 - August 2026 Re-check after a patch: the log format is NetSec's own, so it drifts with NetSec rather than with the game. Re-read Devices.reds / People.reds if the parse comes back empty against a log you can see GAP lines in.

Load cyberwise alongside this for the method rules.

This skill is invoked on request. Do not run it proactively.

What a GAP is, and why it only exists in a log

NetSec gates a device or a person behind breaching their network's access point. Where a network has no access point at all, there is nothing to breach, so NetSec leaves the target open rather than making it permanently unhackable - "a device that exists only to refuse you is a bug, not a difficulty setting".

That decision is invisible in play. Nothing happens; the thing just works. So the only trace is a line in the log:

[NetSec] GAP device no-access-point at=-1156.625732,1300.835083,76.677292
[NetSec] GAP people no-network      at=-1148.201172,1571.900024,73.400002

Those coordinates are the holes in the world - the places that should have an access point and do not. This skill turns them into somewhere you can teleport.

It requires NetSec's Diagnostics -> Log decisions to the game log to be on. With it off there are no GAP lines and the tool correctly reports nothing.

Generate the waypoints

powershell
skills\cyberwise-netsec\tools\New-GapWaypoints.ps1              # report only
skills\cyberwise-netsec\tools\New-GapWaypoints.ps1 -Write       # merge into CETMonkey

It reads scripting.log and its rotations - scripting.1.log and friends - because the interesting sessions are frequently not the current one. Then it clusters, because raw GAP lines are enormously repetitive: one evening produced 1,534 lines that resolved to 68 sites. A single unlocked terminal logs every time the player looks at it.

switchdefault
-ClusterRadius25metres. Two hits closer than this are the same place. Sector-scale on purpose - the answer is "an access point belongs around here", not "at this doorway"
-MinHits2drop singletons; one open device is usually somebody's toaster
-PrefixNETSEC-GAPwhat to type in CETMonkey's filter box
-Writeoffwithout it, nothing is written

Output is ordered by hit count, so the top of the list is the largest cluster of ungated things - which is the best argument for an access point, not proof of one. Whether a spot deserves one is a judgement about the scene, and the tool does not pretend to make it.

Why CETMonkey and not AMM

CETMonkey reads exactly one file - mods\cetmonkey\locations.lua - and that is the list its Teleport panel filters (init.lua:248). Its own Record here button writes an AMM-format .json into the CETMonkey folder for you to move by hand, so producing AMM files would add a manual step to something generated.

locations.lua carries a header saying it is generated from AMM's User\Locations and should not be hand-edited. The tool respects that: rows that did not come from it are parsed, kept, and written back untouched, and only rows whose name starts with the prefix are replaced. So it is idempotent, and regenerating from AMM costs nothing but a re-run.

After writing: Reload all mods in CET, then filter the Teleport list for NETSEC-GAP.

Traps

-like treats [NetSec] as a character class. The first version of this tool used -notlike '*[NetSec] GAP*' as a cheap pre-filter and reported zero hits against a log holding 1,534 of them - because in a wildcard pattern [...] means "any one of these characters". Use .Contains() for a literal. This is the single easiest way to write a PowerShell log parser that silently finds nothing.

An empty result is not evidence the world is fine. Check the setting is on, and check the log actually contains [NetSec] GAP before concluding anything - the front-door rule about proving a command ran applies exactly here.

The waypoint is where the GAP was logged, not where the access point goes. It is the position of the ungated thing. An access point wants to be somewhere a person could plausibly reach and jack into - which is why the output is a place to stand and look around, not a placement.

The other lines NetSec logs

Not parsed by this tool, but worth knowing when reading a log by hand:

linemeans
GAP device no-access-pointon a network, but the network has no access point anywhere
GAP people no-networknot wired to any network at all
LOCKED device reason=UNBREACHEDthe mechanic working - this is not a gap
LOCKED device reason=INTELLIGENCEbreached, but INT too low - also not a gap
STRANDED granted jack-in porthad an access point on paper that could not be resolved in the world, so NetSec gave it a port
TIERED board - N of M ring daemon(s) offeredwhich rings the network was judged to have
ALARM - ...who answered a failed breach

STRANDED lines are the interesting neighbours of GAP: those networks have an entrance in the data that does not exist in the world. If someone asks for placement candidates and the GAP list is thin, those are the next thing to read.

Related

  • The mod: ~/repos/cp2077-netsec
  • cyberwise-tweaks for authoring the TweakXL records and redscript behind it
  • cyberwise-conflicts if a device is gated and should not be

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Cyberwise Netsec AI skill do?

Turn NetSec's diagnostic log into places you can stand - parse the GAP lines it writes for networks with no way in, cluster them into candidate access-point sites, and write them as CETMonkey teleport waypoints. Use when asked where NetSec found holes in the world, to plan where to place access points, or to generate teleport waypoints from a NetSec log.

Why use Cyberwise Netsec on TypingMind?

Because you install it once and use it with any model. Cyberwise Netsec is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Cyberwise Netsec in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/zenobi-us/dotfiles/tree/master/files/devtools/agent/bundles/developer/skills/game-dev/cyberwise-netsec. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Cyberwise Netsec?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Cyberwise Netsec?

As many as you like. As long as a model supports skills, you can use Cyberwise Netsec with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Cyberwise Netsec AI skill free?

Yes. It is published on GitHub by zenobi-us under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇