tailtester 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tailtester-0.0.1/.gitignore +80 -0
- tailtester-0.0.1/PKG-INFO +43 -0
- tailtester-0.0.1/PUBLISH.md +33 -0
- tailtester-0.0.1/README.md +28 -0
- tailtester-0.0.1/pyproject.toml +22 -0
- tailtester-0.0.1/src/tailtest/__init__.py +14 -0
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# =============================================================================
|
|
2
|
+
# craftagent — Python CLI testing tool for AI agents
|
|
3
|
+
# =============================================================================
|
|
4
|
+
|
|
5
|
+
# ----- Python -----
|
|
6
|
+
__pycache__/
|
|
7
|
+
*.pyc
|
|
8
|
+
*.pyo
|
|
9
|
+
*.pyd
|
|
10
|
+
*.egg
|
|
11
|
+
*.egg-info/
|
|
12
|
+
dist/
|
|
13
|
+
build/
|
|
14
|
+
sdist/
|
|
15
|
+
wheels/
|
|
16
|
+
*.whl
|
|
17
|
+
.eggs/
|
|
18
|
+
|
|
19
|
+
# Virtual environments
|
|
20
|
+
.venv/
|
|
21
|
+
venv/
|
|
22
|
+
env/
|
|
23
|
+
|
|
24
|
+
# ----- Testing (pytest) -----
|
|
25
|
+
.pytest_cache/
|
|
26
|
+
.coverage
|
|
27
|
+
.coverage.*
|
|
28
|
+
htmlcov/
|
|
29
|
+
coverage.xml
|
|
30
|
+
*.cover
|
|
31
|
+
tests/results/
|
|
32
|
+
|
|
33
|
+
# ----- Linting / type-checking -----
|
|
34
|
+
.ruff_cache/
|
|
35
|
+
.pyright/
|
|
36
|
+
.mypy_cache/
|
|
37
|
+
|
|
38
|
+
# ----- Rust (future core component) -----
|
|
39
|
+
target/
|
|
40
|
+
*.so
|
|
41
|
+
*.dylib
|
|
42
|
+
*.dll
|
|
43
|
+
Cargo.lock
|
|
44
|
+
|
|
45
|
+
# ----- .tester context/test data -----
|
|
46
|
+
# The .tester/ directory holds per-project context and test artifacts.
|
|
47
|
+
# Each user generates their own; never commit it.
|
|
48
|
+
.tester/
|
|
49
|
+
|
|
50
|
+
# ----- Environment / secrets -----
|
|
51
|
+
.env
|
|
52
|
+
.env.*
|
|
53
|
+
!.env.example
|
|
54
|
+
|
|
55
|
+
# ----- Local databases -----
|
|
56
|
+
*.sqlite
|
|
57
|
+
*.db
|
|
58
|
+
|
|
59
|
+
# ----- macOS -----
|
|
60
|
+
.DS_Store
|
|
61
|
+
.AppleDouble
|
|
62
|
+
.LSOverride
|
|
63
|
+
|
|
64
|
+
# ----- IDE / editors -----
|
|
65
|
+
.vscode/
|
|
66
|
+
.idea/
|
|
67
|
+
*.swp
|
|
68
|
+
*.swo
|
|
69
|
+
*~
|
|
70
|
+
|
|
71
|
+
# ----- Claude Code -----
|
|
72
|
+
.claude/
|
|
73
|
+
|
|
74
|
+
# ----- Misc -----
|
|
75
|
+
*.log
|
|
76
|
+
*.tmp
|
|
77
|
+
uv.lock
|
|
78
|
+
.prober/
|
|
79
|
+
marketing/website/node_modules/
|
|
80
|
+
marketing/website/node_modules/
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tailtester
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: The pytest for AI agents — coming soon. https://tailtest.com
|
|
5
|
+
Project-URL: Homepage, https://tailtest.com
|
|
6
|
+
Project-URL: Repository, https://github.com/avansaber/tailtest
|
|
7
|
+
Author: AvanSaber Inc.
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
Keywords: agents,ai,evaluation,llm,testing
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.11
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# tailtest
|
|
17
|
+
|
|
18
|
+
**The pytest for AI agents.**
|
|
19
|
+
|
|
20
|
+
> You don't write tests. You build your agent — tailtest watches, learns, tests.
|
|
21
|
+
|
|
22
|
+
This is a placeholder package. The full release is coming soon.
|
|
23
|
+
|
|
24
|
+
## What tailtest will be
|
|
25
|
+
|
|
26
|
+
- Auto-generate tests by observing your development (Position 0)
|
|
27
|
+
- 22 assertion types: deterministic first, LLM-judge second
|
|
28
|
+
- 64 red-team attacks with OWASP compliance
|
|
29
|
+
- Works with any framework (LangChain, CrewAI, PydanticAI, raw API)
|
|
30
|
+
- Production monitoring with drift detection
|
|
31
|
+
- Zero telemetry, fully local, Apache 2.0
|
|
32
|
+
|
|
33
|
+
## Links
|
|
34
|
+
|
|
35
|
+
- Website: https://tailtest.com
|
|
36
|
+
- GitHub: https://github.com/avansaber/tailtest
|
|
37
|
+
- License: Apache 2.0
|
|
38
|
+
|
|
39
|
+
## Coming Soon
|
|
40
|
+
|
|
41
|
+
pip install tailtest
|
|
42
|
+
tailtest scan .
|
|
43
|
+
tailtest run
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# How to Publish tailtest to PyPI
|
|
2
|
+
|
|
3
|
+
## Prerequisites
|
|
4
|
+
- PyPI account (pypi.org) registered under AvanSaber
|
|
5
|
+
- API token created at https://pypi.org/manage/account/token/
|
|
6
|
+
|
|
7
|
+
## Steps
|
|
8
|
+
|
|
9
|
+
1. Navigate to this directory:
|
|
10
|
+
cd marketing/placeholders/pypi/
|
|
11
|
+
|
|
12
|
+
2. Build the package:
|
|
13
|
+
python -m build
|
|
14
|
+
|
|
15
|
+
3. Upload to PyPI:
|
|
16
|
+
twine upload dist/*
|
|
17
|
+
|
|
18
|
+
4. When prompted, use:
|
|
19
|
+
- Username: __token__
|
|
20
|
+
- Password: your-pypi-api-token
|
|
21
|
+
|
|
22
|
+
5. Verify at https://pypi.org/project/tailtest/
|
|
23
|
+
|
|
24
|
+
## Later: Publishing the Real Package
|
|
25
|
+
When ready to publish the real code, run from the project root:
|
|
26
|
+
cd /path/to/craftagent
|
|
27
|
+
python -m build
|
|
28
|
+
twine upload dist/*
|
|
29
|
+
|
|
30
|
+
This will overwrite the 0.0.1 placeholder with the real package.
|
|
31
|
+
|
|
32
|
+
## Dependencies Needed
|
|
33
|
+
pip install build twine
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# tailtest
|
|
2
|
+
|
|
3
|
+
**The pytest for AI agents.**
|
|
4
|
+
|
|
5
|
+
> You don't write tests. You build your agent — tailtest watches, learns, tests.
|
|
6
|
+
|
|
7
|
+
This is a placeholder package. The full release is coming soon.
|
|
8
|
+
|
|
9
|
+
## What tailtest will be
|
|
10
|
+
|
|
11
|
+
- Auto-generate tests by observing your development (Position 0)
|
|
12
|
+
- 22 assertion types: deterministic first, LLM-judge second
|
|
13
|
+
- 64 red-team attacks with OWASP compliance
|
|
14
|
+
- Works with any framework (LangChain, CrewAI, PydanticAI, raw API)
|
|
15
|
+
- Production monitoring with drift detection
|
|
16
|
+
- Zero telemetry, fully local, Apache 2.0
|
|
17
|
+
|
|
18
|
+
## Links
|
|
19
|
+
|
|
20
|
+
- Website: https://tailtest.com
|
|
21
|
+
- GitHub: https://github.com/avansaber/tailtest
|
|
22
|
+
- License: Apache 2.0
|
|
23
|
+
|
|
24
|
+
## Coming Soon
|
|
25
|
+
|
|
26
|
+
pip install tailtest
|
|
27
|
+
tailtest scan .
|
|
28
|
+
tailtest run
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tailtester"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "The pytest for AI agents — coming soon. https://tailtest.com"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
authors = [{ name = "AvanSaber Inc." }]
|
|
13
|
+
keywords = ["ai", "agents", "testing", "llm", "evaluation"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"License :: OSI Approved :: Apache Software License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://tailtest.com"
|
|
22
|
+
Repository = "https://github.com/avansaber/tailtest"
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""tailtest — The pytest for AI agents.
|
|
2
|
+
|
|
3
|
+
This is a placeholder package. The full release is coming soon.
|
|
4
|
+
|
|
5
|
+
Visit https://tailtest.com for more information.
|
|
6
|
+
Visit https://github.com/avansaber/tailtest for the source code.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
__version__ = "0.0.1"
|
|
10
|
+
|
|
11
|
+
raise ImportError(
|
|
12
|
+
"tailtest is not yet released. This is a namespace placeholder.\n"
|
|
13
|
+
"Visit https://tailtest.com for updates on the full release."
|
|
14
|
+
)
|