AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Mathodology Project Orientation

skill-sweetcornna-mathodology-mathodology-project-orientation · by sweetcornna

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

No reviews yet
0 installs
38 views
0.0% view→install

Install

$ agentstack add skill-sweetcornna-mathodology-mathodology-project-orientation

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-sweetcornna-mathodology-mathodology-project-orientation)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Mathodology Project Orientation? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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:

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.

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

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.