Install
$ agentstack add skill-sweetcornna-mathodology-mathodology-project-orientation ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ● Shell / process execution Used
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →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.shAGENTS.mdREADME.mdREADME_en.mddocs/SKILLS.mddocs/SKILLS_zh.mddocs/INSTALL.mddocs/INSTALL_zh.mddocs/WORKFLOWS.mddocs/WORKFLOWS_zh.mddocs/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:
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:
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
- Source: sweetcornna/mathodology
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.