morpheus-ai
WAKE.md for AI agents: compile project state so agents stop starting cold.
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
gh pr view
설명 보기 ▼
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
설명 보기 ▼
pipx
Python 애플리케이션을 격리된 환경에서 설치하고 실행.
더 많은 정보: <https://manned.org/pipx>.
pipx run {{pycowsay}} {{moo}}
임시 가상 환경에서 앱 실행:
pipx install {{package}}
가상 환경에 패키지 설치 및 진입점을 경로에 추가:
pipx uninstall {{package}}
설치된 패키지 나열:
pytest
설명 보기 ▼
pytest
Python 테스트 실행.
더 많은 정보: <https://docs.pytest.org/en/latest/how-to/usage.html>.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
특정 파일에서 테스트 실행:
pytest -k {{expression}}
특정 [k]eyword 표현식과 일치하는 테스트 실행:
pytest {{[-x|--exitfirst]}}
테스트가 실패하거나 오류가 발생하면 즉시 종료:
python
설명 보기 ▼
python
Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.
python
REPL(대화형 셸) 시작:
python {{path/to/file.py}}
특정 Python 파일 실행:
python -i {{path/to/file.py}}
특정 Python 파일 실행 후 REPL 시작:
python3
설명 보기 ▼
python3
이 명령은 `python`의 별칭입니다.
tldr python
자세한 내용은 원본 명령을 참고하세요:
ruff check
설명 보기 ▼
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
설명 보기 ▼
uvx
이 명령은 `uv tool run`의 별칭입니다.
tldr uv tool
자세한 내용은 원본 명령을 참고하세요:
