theinterneti
- 36 skills
- 0 followers
- 6 hours ago last updated
- ▌ Gitnexus CLI · theinternetiUse when the user needs to run GitNexus CLI commands like analyze/index a repo, check status, clean the index, generate a wiki, or list indexed repos. Examples: "Index this repo", "Reanalyze the codebase", "Generate a wiki"
- ▌ Git Commit 2 · theinternetiUse this skill when making git commits in the TTA.dev repository. Enforces Conventional Commits format and pre-commit quality checks. Invoke when the user says "commit", "git commit", "save changes", "commit my work", or asks how to commit code.
- ▌ Sdd Workflow 2 · theinternetiUse this skill when the user asks to build a new feature, implement code, or start development work. Enforces the Spec-Driven Development (SDD) 4-phase workflow before any code is written. Invoke when the user says "build", "implement", "create a feature", "write code for", or "add support for".
- ▌ Session Start 2 · theinternetiUse this skill at the start of every session to orient in the codebase, load relevant context, and warm up before any task. Invoke when the user says "start session", "begin work", "orient yourself", "what is the state of the project", or at the very beginning of a new conversation.
- ▌ Core Conventions 2 · theinternetiUse this skill when writing or reviewing Python code in TTA.dev. Covers the package manager (uv), type hint standards, primitives usage, anti-patterns to avoid, state management, and LLM provider strategy. Invoke when the user says "write code", "review code", "add a feature", or asks about conventions or standards.
- ▌ Build Test Verify 2 · theinternetiUse this skill when asked to build the project, run tests, lint the code, check types, or verify that the TTA.dev platform is stable before committing. Invoke when the user says "run tests", "check quality", "lint", "format", "verify", or before any commit or PR.
- ▌ Create Atomic Note 2 · theinternetiUse this skill when saving a single-topic documentation note to docs/kb-exports/ for later knowledge base ingestion. Invoke after completing a significant task, bug fix, architectural decision, research finding, or when the user says "save a note", "document this", or "create a knowledge base entry".
- ▌ Self Review Checklist 2 · theinternetiUse this skill before submitting code for review or merging a pull request. Covers a pre-merge checklist of common mistakes to catch across code quality, testing, security, and documentation. Invoke when the user says "review my code", "pre-merge check", "self-review", "am I ready to submit", or before opening a PR.
- ▌ Git Commit · theinternetiUse this skill when making git commits in the TTA.dev repository. Enforces Conventional Commits format and pre-commit quality checks.
- ▌ Ttadev LLM · theinterneti bundleTeaches how to call an LLM using TTA.dev primitives. Use when the user wants to call an LLM, use LiteLLM, use make_resilient_llm, integrate with an LLM provider, pick a model string for groq, anthropic, openai, gemini, ollama, or openrouter, stream tokens, use tool calls, or set up Langfuse observability. Covers LiteLLMPrimitive (primary path), UniversalLLMPrimitive (fallback), LLMRequest/LLMResponse types, streaming, ToolSchema, and the primary/fallback architecture.
- ▌ Sdd Workflow · theinternetiUse this skill when the user asks to build a new feature or write implementation code. Enforces the Spec-Driven Development (SDD) 4-phase workflow before any code is written.
- ▌ Create Agent · theinterneti bundleUse this skill when creating, modifying, or debugging a custom Copilot agent (.agent.md file). Provides detailed patterns for agent orchestration, handoffs, sub-agent invocation, tool configuration, variable extraction, and prompt structure. Invoke when the user says "create an agent", "add a new agent", "agent handoffs", "sub-agent", or "orchestrate agents".
- ▌ CLI · theinternetiCli subsystem in TTA.dev: cmd_status and related code. 110 symbols | 27 files | Cohesion: 70%
- ▌ LLM · theinternetiLlm subsystem in TTA.dev: execute and related code. 171 symbols | 30 files | Cohesion: 67%
- ▌ Session Start · theinternetiUse this skill at the start of every session to load context from Hindsight and orient in the codebase with CGC. Run before any task.
- ▌ Tests · theinternetiTests area in TTA.dev (session and related). 224 symbols | 25 files | Cohesion: 77%
- ▌ Tools · theinternetiTools subsystem in TTA.dev: list_active_ownership, control_start_workflow, control_mark_workflow_step_running and related code. 35 symbols | 6 files | Cohesion: 85%
- ▌ Package Release · theinternetiMulti-persona workflow for releasing TTA.dev packages to PyPI with full quality validation
- ▌ Core Conventions · theinternetiUse this skill when writing or reviewing Python code in TTA.dev. Covers package manager, type hints, primitives usage, and anti-patterns.
- ▌ Agents · theinternetiAgents subsystem in TTA.dev: handle_agent_command, get, get_registry and related code. 66 symbols | 24 files | Cohesion: 72%
- ▌ Build Test Verify · theinternetiUse this skill when asked to build the project, run tests, lint the code, or verify that the TTA.dev platform is stable before committing.
- ▌ Scripts · theinternetiScripts subsystem in TTA.dev: get_open_prs, calculate_pr_age, calculate_pr_staleness and related code. 187 symbols | 39 files | Cohesion: 91%
- ▌ Speckit · theinternetiSpeckit subsystem in TTA.dev: check_approval_status, approve, reject and related code. 26 symbols | 5 files | Cohesion: 82%
- ▌
- ▌ Ttadev Primitives · theinterneti bundleTeaches TTA.dev primitive composition patterns so an AI agent can compose a working workflow in 1-2 turns. Use when the user wants to compose a workflow, use TTA.dev primitives, add a retry primitive, use workflow context, build a pipeline, or wire up any primitive (LambdaPrimitive, RetryPrimitive, TimeoutPrimitive, CachePrimitive, CircuitBreakerPrimitive, FallbackPrimitive, SequentialPrimitive, ParallelPrimitive). Covers the >> composition operator, WorkflowContext state passing, import paths, anti-patterns, and end-to-end workflow execution.
- ▌ Create Atomic Note · theinternetiUse this skill when saving a single-topic documentation note to docs/kb-exports/ for later knowledge base ingestion.
- ▌ Adaptive · theinternetiAdaptive subsystem in TTA.dev: get_fallback_stats and related code. 156 symbols | 11 files | Cohesion: 80%
- ▌ Recovery · theinternetiRecovery subsystem in TTA.dev: execute and related code. 32 symbols | 4 files | Cohesion: 75%
- ▌ Create Pull Request · theinternetiUse this skill when creating or updating a pull request in the TTA.dev repository. Covers PR structure, review expectations, and checklist.
- ▌ Feature Development · theinternetiFull-stack feature development workflow from API to UI with testing
- ▌ Integration · theinternetiIntegration area in TTA.dev (universal_llm_primitive and related). 65 symbols | 10 files | Cohesion: 77%
- ▌ Transformer · theinternetiTransformer subsystem in TTA.dev: walk, visit_Try, visit_If and related code. 37 symbols | 5 files | Cohesion: 91%
- ▌ Self Review Checklist · theinternetiUse this skill before submitting code for review or merging a pull request. Covers a pre-merge checklist of common mistakes to catch.
- ▌ Integrations · theinternetiIntegrations area in TTA.dev (openhands_primitive and related). 60 symbols | 6 files | Cohesion: 82%
- ▌ Control Plane · theinternetiControl-Plane subsystem in TTA.dev: get_task, get_run, put_run and related code. 88 symbols | 15 files | Cohesion: 81%
- ▌ Observability · theinternetiObservability subsystem in TTA.dev: demo_hierarchical_trace, handle_api_active_agents, handle_api_agent_actions and related code. 115 symbols | 38 files | Cohesion: 73%