Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
Use for:
Sign in to like and favorite skills
Use for:
core/ai_tuner_toolkit_dyno_v1_2.pycore/ve_operations.pycore/io_contracts.pyexperiments/protos/*.pyUse for:
Use for:
core/, experiments/protos/, or test harnessesarchive/ - Historical code and artifacts (reference only)experiments/ - Research kernels and experiment outputs (unless explicitly instructed)tables/ - Calibration base tables (unless performing VE operations)Run in this order:
python tests/selftest.py python tests/acceptance_test.py python tests/kernels/test_k1.py python tests/kernels/test_k2.py python tests/kernels/test_k2_fixed.py python tests/kernels/test_k3.py python -m pytest tests/unit tests/integration -v
pwsh scripts/dynoai_safety_check.ps1 -RunSelftests -RunKernels -RunPytest
README.md - Overview, quick start, troubleshootingdocs/DYNOAI_CORE_REFERENCE.md - Minimal runnable examplesdocs/DYNOAI_SAFETY_RULES.md - Safety policiesdocs/DYNOAI_ARCHITECTURE_OVERVIEW.md - System architecture# tests/unit/test_new_feature.py from pathlib import Path import pytest ROOT = Path(__file__).resolve().parents[2] # Repo root def test_new_feature(): """Test description.""" # Test implementation assert True
core/ai_tuner_toolkit_dyno_v1_2.py argparse sectiontests/selftest.py or new unit testdocs/DYNOAI_CORE_REFERENCE.md with exampleREADME.md if user-facingexperiments/protos/kN_description_v1.pykernel_smooth() function matching signatureexperiments/run_experiment.py IDEAS dicttests/kernels/test_kN.py harnessgit revert <commit-hash> git push origin main
from pathlib import Path from core.ve_operations import VERollback VERollback().rollback( current_ve_path=Path("tables/VE_Front_Bad.csv"), metadata_path=Path("tables/VE_Front_Bad_meta.json"), output_path=Path("tables/VE_Front_Restored.csv"), )
# If backup exists Remove-Item -Recurse -Force DynoAI_2 Copy-Item -Recurse DynoAI_2_backup_<timestamp> DynoAI_2
By following these rules, we maintain DynoAI's tuning accuracy, customer safety, and code quality standards.