Memoh: Skill for Claude Code

.agents/skills/twilight-ai/SKILL.md

twilight-ai is a skill for Claude Code, Codex from felinics/Memoh. It costs 41 tokens per session (1,935 once invoked), scanned A, original, AGPL-3.0.

A development aid for the Twilight AI Go software library. The available description does not provide enough detail about its specific capabilities.

In plain words
What is it for?
The description only indicates that it supports work on the Twilight AI Go library, including providers, embeddings, tool calling, streaming, examples, and documentation.
Why use it?
The description is too brief to identify a particular problem it removes.

Skill for Claude CodeCodex

Which agent this was written for is unclear — body not stored (licence); the path alone says nothing. Also seen: installed under .agents/ (shared by several agents).

This is felinics/Memoh's own configuration. It tells Claude Code and Codex how to work on Memoh itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Memoh configures →

About the project

Memoh is an open-source multi-agent platform that gives each AI agent a persistent computer-like workspace with a filesystem, desktop, browser, network access, and long-term memory. It is for individuals and teams running agents continuously, including built-in agents or coding agents such as Claude Code and Codex, through chat platforms and a web interface.

felinics/Memoh · 2,211 stars · on GitHub · memoh.ai

Reuse

Borrowing it

Nothing to install: this file belongs to felinics/Memoh. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/felinics/Memoh/main/.agents/skills/twilight-ai/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/felinics/Memoh

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for twilight-ai

README.md
[![agentmods](https://agentmods.dev/badge/skills/felinics/memoh/twilight-ai.svg)](https://agentmods.dev/skills/felinics/memoh/twilight-ai)
Your own site
<a href="https://agentmods.dev/skills/felinics/memoh/twilight-ai"><img src="https://agentmods.dev/badge/skills/felinics/memoh/twilight-ai.svg" alt="Measured on agentmods" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,935 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin unknown No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00041 $0.01935
Opus 5 $0.00020 $0.00967
Sonnet 5 $0.00008 $0.00387
Haiku 4.5 $0.00004 $0.00194

Measured 8d ago against content hash 80be92d69994, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

twilight-ai scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/twilight-ai/SKILL.md · 229 lines

The source is not reproduced here

Licensed AGPL-3.0

The repository is licensed AGPL-3.0, which this catalogue does not treat as permission to reproduce the file. Read it at the source.

Read it on GitHub

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 229 lines · 41 tokens per session scan A 80be92d69994

Subscribe to this mod's changes

twilight-ai is a skill published in the GitHub repository felinics/Memoh (2,211 stars, last pushed today), licensed AGPL-3.0. It adds 41 tokens to every session and 1,935 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

stack-trace-go-probe

Internal helper for meta-stack-trace-investigator. Use when a Go panic or stack trace needs Go-specific nil/error checks, go test reproducer guidance, and patch targets.

opensquilla/opensquilla · 42 tokens

golang-continuous-integration

GitHub Actions CI/CD pipeline configuration for Golang projects — workflow files for test, lint, SAST, coverage and vulnerability-scan jobs, Dependabot and Renovate config files, GoReleaser release pipelines, Docker build/push, repository security settings, and AI-driven PR review. Use when setting up or improving Go…

samber/cc-skills-golang · 181 tokens

golang-testing

Production-ready Golang tests — table-driven tests, testify suites and mocks, parallel tests, fuzzing, fixtures, goroutine leak detection with goleak, snapshot testing, code coverage, integration tests, idiomatic test naming. Use when writing or reviewing Go tests, choosing a testing approach, setting up Go test CI…

samber/cc-skills-golang · 115 tokens

golang-benchmark

Golang benchmarking, profiling, and performance measurement. Use when writing, running, or comparing Go benchmarks, profiling hot paths with pprof, interpreting CPU/memory/trace profiles, analyzing results with benchstat, setting up CI benchmark regression detection, or investigating production performance with…

samber/cc-skills-golang · 104 tokens

golang-database

Comprehensive guide for Go database access — parameterized queries, struct scanning, NULLable columns, transactions, isolation levels, SELECT FOR UPDATE, connection pool, batch processing, context propagation, and migration tooling. Use when writing, reviewing, or debugging Golang code that interacts with PostgreSQL…

samber/cc-skills-golang · 99 tokens

golang-dependency-injection

Comprehensive guide for dependency injection (DI) in Golang. Covers why DI matters (testability, loose coupling, separation of concerns, lifecycle management), manual constructor injection, and DI library comparison (google/wire, uber-go/dig, uber-go/fx, samber/do). Use this skill when designing service architecture…

samber/cc-skills-golang · 182 tokens