# Mathodology Project Orientation

> Use when starting work in the Mathodology skills-only repository, checking retained files, or deciding whether a change belongs on this branch.

- **Type:** Skill
- **Install:** `agentstack add skill-sweetcornna-mathodology-mathodology-project-orientation`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [sweetcornna](https://agentstack.voostack.com/s/sweetcornna)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [sweetcornna](https://github.com/sweetcornna)
- **Source:** https://github.com/sweetcornna/mathodology/tree/main/.claude/skills/mathodology-project-orientation

## Install

```sh
agentstack add skill-sweetcornna-mathodology-mathodology-project-orientation
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Mathodology Project Orientation

## Repository Contract

This branch is a skills-only GitHub tree. Treat it as an AI-coding knowledge pack, not as the original runnable Mathodology application.

Current work should normally edit only:

- `.claude/skills//SKILL.md`
- `.claude/skills//agents/openai.yaml`
- `.claude/agents/.md`
- `.claude/workflows/.md`
- `.claude/skills/mathodology-whole-project/scripts/create-source-backup.sh`
- `AGENTS.md`
- `README.md`
- `README_en.md`
- `docs/SKILLS.md`
- `docs/SKILLS_zh.md`
- `docs/INSTALL.md`
- `docs/INSTALL_zh.md`
- `docs/WORKFLOWS.md`
- `docs/WORKFLOWS_zh.md`
- `docs/BACKUP.md`
- `.gitignore`

`LICENSE` is retained but should not change unless the license changes.

## What Is Absent

The current GitHub tree should not contain application source, generated clients, CI, deployment, package-manager, installer, data, or test trees.

If a task requires historical implementation detail, use Git history or another branch in a separate worktree. Do not add those files back to this branch as part of ordinary skills maintenance.

## Boundary Check

Before publishing cleanup or skill maintenance, verify tracked files:

```bash
python3 - <<'PY'
import subprocess
import sys

keep_exact = {
    ".gitignore",
    "AGENTS.md",
    "README.md",
    "README_en.md",
    "LICENSE",
    "docs/SKILLS.md",
    "docs/SKILLS_zh.md",
    "docs/INSTALL.md",
    "docs/INSTALL_zh.md",
    "docs/WORKFLOWS.md",
    "docs/WORKFLOWS_zh.md",
    "docs/BACKUP.md",
}
files = subprocess.check_output(["git", "ls-files"], text=True).splitlines()
bad = [
    f for f in files
    if f not in keep_exact
    and not f.startswith(".claude/skills/")
    and not f.startswith(".claude/agents/")
    and not f.startswith(".claude/workflows/")
]
if bad:
    print("\n".join(bad))
    sys.exit(1)
print(f"tracked whitelist ok: {len(files)} files")
PY
```

## Text Check

Search for stale current-path claims before committing:

```bash
rg -n "apps/|crates/|packages/|docs/skills|Dockerfile|docker-compose|just |cargo|pnpm|uv run|\\.github|installer" README.md README_en.md AGENTS.md docs .claude/skills
```

Hits are acceptable only when they describe removed historical material or an absence check. They must not instruct agents to edit or run missing current files.

## Choosing Skills

- Whole repository backup, transfer, or orchestration: use `mathodology-whole-project`.
- Skill text or metadata changes: use `mathodology-skill-authoring`.
- Award-level Codex or Claude Code phase workflow: use `docs/WORKFLOWS.md`.
- Former subsystem knowledge: use the matching archived subsystem skill.
- Validation and publishing checks: use `mathodology-dev-test-release`.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [sweetcornna](https://github.com/sweetcornna)
- **Source:** [sweetcornna/mathodology](https://github.com/sweetcornna/mathodology)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** yes
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-sweetcornna-mathodology-mathodology-project-orientation
- Seller: https://agentstack.voostack.com/s/sweetcornna
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
