morpheus-ai
WAKE.md for AI agents: compile project state so agents stop starting cold.
File Explorer
- config.yml
- ci.yml
- release.yml
- dependabot.yml
- morpheus-demo.cast
- morpheus-demo.gif
- README.md
- record_demo.sh
- transcript.md
- parametric_memory.md
- v0.1.0.md
- v0.2.0b1.md
- v0.2.0b2.md
- ML_CORE_LIVE_REPORT.md
- AUTONOMOUS_LAB.md
- BETA_EXIT_PLAN.md
- LEARNING_CORE.md
- MCP_TRUTH_TOOLS_SMOKE_2026-05-20.md
- MLX_STABILITY_2026-05-20.md
- RELEASE.md
- RELEASE_READINESS_2026-05-20.md
- RELEASE_READINESS_2026-07-20.md
- ROADMAP.md
- TESTING.md
- WHY_WAKE.md
- __init__.py
- compile.py
- verify.py
- wake.py
- __init__.py
- server.py
- __init__.py
- base.py
- llamafactory.py
- peft.py
- __init__.py
- adapter_artifacts.py
- adapters.py
- authority.py
- benchmark.py
- categories.py
- corrections.py
- dataset.py
- dataset_validation.py
- eval.py
- evals.py
- examples.py
- lab.py
- mlx_fd_loader.py
- quality.py
- readiness.py
- registry.py
- safety.py
- scoring.py
- team.py
- train.py
- training_guard.py
- training_runtime.py
- __init__.py
- base.py
- fake.py
- local.py
- null.py
- ollama.py
- __init__.py
- active_authority.py
- classifier.py
- models.py
- review.py
- routing.py
- scanner.py
- verifier.py
- __init__.py
- check.py
- command_contract.py
- compiler.py
- config.py
- models.py
- portable_lock.py
- provenance.py
- safe_io.py
- state_authority.py
- verify.py
- wake.py
- __init__.py
- cache.py
- calendar.py
- dates.py
- evidence.py
- filesystem.py
- github.py
- gmail.py
- linear.py
- manifest.py
- slack.py
- llamafactory.yaml
- __init__.py
- consolidate.py
- eval.py
- README.md
- train.py
- __init__.py
- __main__.py
- cli.py
- daily_training.sh
- mcp_truth_tools_smoke.py
- architecture.md
- decisions.md
- prompt_injection.md
- .morpheusignore
- AGENTS.md
- CHANGELOG.md
- pyproject.toml
- README.md
- secrets.env
- SPEC.md
- WAKE.md
- semantic_candidates.jsonl
- .morpheusignore
- README.md
- SPEC.md
- WAKE.md
- README.md
- README.md
- README.md
- check_correct_input.txt
- check_stale_input.txt
- __init__.py
- test_active_state_review_authority.py
- test_api.py
- test_api_bootstrap.py
- test_check.py
- test_cli.py
- test_cli_semantic.py
- test_compiler.py
- test_config.py
- test_consolidate.py
- test_eval.py
- test_external_integrations.py
- test_filesystem_integration.py
- test_learning_adapters.py
- test_learning_benchmark.py
- test_learning_check_integration.py
- test_learning_dataset.py
- test_learning_dataset_staging.py
- test_learning_dataset_validation.py
- test_learning_eval.py
- test_learning_lab.py
- test_learning_mlx_fd_loader.py
- test_learning_quality.py
- test_learning_registry_quality.py
- test_learning_train.py
- test_learning_training_guard.py
- test_models.py
- test_portable_file_lock.py
- test_provenance.py
- test_release_scaffolding.py
- test_repository_hygiene.py
- test_safe_io.py
- test_semantic_classifier.py
- test_semantic_fixtures.py
- test_semantic_review.py
- test_semantic_scanner.py
- test_state_authority.py
- test_team_learning.py
- test_train.py
- test_ui_static.py
- test_verify.py
- test_wake.py
- README.md
- lib.rs
- main.rs
- build.rs
- Cargo.toml
- index.html
- tauri.conf.json
- .dockerignore
- .gitignore
- AGENTS.md
- CHANGELOG.md
- CONTRIBUTING.md
- Dockerfile
- LICENSE
- Makefile
- pyproject.toml
- README.md
- README.ru.md
- SECURITY.md
- SPEC.md
- WAKE.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
gh pr view
View Details ▼
gh pr view
View details of a GitHub pull request.
gh pr view
View the pull request associated with the current branch:
gh pr view {{123}}
View a specific pull request:
gh pr view {{[-w|--web]}}
Open the pull request in the default web browser:
pipx
View Details ▼
pipx
Install and run Python applications in isolated environments.
pipx run {{pycowsay}} {{moo}}
Run an app in a temporary virtual environment:
pipx install {{package}}
Install a package in a virtual environment and add entry points to path:
pipx uninstall {{package}}
Uninstall a package:
pytest
View Details ▼
pytest
Run Python tests.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
Run tests from specific files:
pytest -k {{expression}}
Run tests with names matching a specific [k]eyword expression:
pytest {{[-x|--exitfirst]}}
Exit as soon as a test fails or encounters an error:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
python3
View Details ▼
python3
This command is an alias of `python`.
tldr python
View documentation for the original command:
ruff check
View Details ▼
ruff check
An extremely fast Python linter. `check` is the default command - it can be omitted everywhere.
If no files or directories are specified, the current working directory is used by default.
ruff check {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}
Run the linter on the given files or directories:
ruff check --fix
Apply the suggested fixes, modifying the files in-place:
ruff check --watch
Run the linter and re-lint on change:
uvx
View Details ▼
uvx
This command is an alias of `uv tool run`.
tldr uv tool
View documentation for the original command:
