ctxctl 0.1.2

Pure CLI, zero-MCP, stateless context layer for AI coding agents.
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Fixture exercising the deps command (python)."""

import os, sys
import numpy as np
from typing import Optional
from . import vendor_helpers
from .vendor_helpers import util
from .models import User
import myproject.models


def main() -> None:
    print(os.name, np.__version__, Optional, vendor_helpers, util, User, myproject)