Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add aAAaqwq/AGI-Super-Team --skill create-projectgit clone --depth 1 https://github.com/aAAaqwq/AGI-Super-TeamWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/aaaaqwq/agi-super-team/create-project)<a href="https://agentmods.dev/skills/aaaaqwq/agi-super-team/create-project"><img src="https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/create-project.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00008 | $0.00813 |
| Opus 5 | $0.00004 | $0.00407 |
| Sonnet 5 | $0.00002 | $0.00163 |
| Haiku 4.5 | $0.00001 | $0.00081 |
Grade A, and why
create-project scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 120 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PM Create Project
Creating a new project with task breakdown
When to use
- "new project: X"
- "create a project for Y"
- When there is a new initiative/goal
Paths
| What | Path |
|---|---|
| Projects | $PM_PATH/pm_projects_master.csv |
| Tasks | $PM_PATH/pm_tasks_master.csv |
Schema: Projects
project_id,project_name,description,goal,status,priority,priority_score,owner,created_date,last_updated,deadline,estimated_hours,actual_hours,actual_tokens,crm_link_type,crm_link_id,tags,notes
How to create a project
import pandas as pd
from datetime import date
import uuid
projects = pd.read_csv('$PM_PATH/pm_projects_master.csv')
new_project = {
'project_id': f'proj-{uuid.uuid4().hex[:4]}',
'project_name': 'Project name',
'description': 'Detailed description',
'goal': 'What does success look like?',
'status': 'planning', # idea/planning/in_progress/on_hold/completed/cancelled
'priority': 'hot', # hot/medium/low
'priority_score': 0.9,
'owner': 'Ivan',
'created_date': str(date.today()),
'last_updated': str(date.today()),
'deadline': '2025-02-10', # if applicable
'estimated_hours': 10,
'actual_hours': 0,
'actual_tokens': 0,
'crm_link_type': '', # company/person/activity
'crm_link_id': '',
'tags': 'tag1;tag2',
'notes': ''
}
projects = pd.concat([projects, pd.DataFrame([new_project])], ignore_index=True)
projects.to_csv('$PM_PATH/pm_projects_master.csv', index=False)
Add tasks immediately
tasks = pd.read_csv('$PM_PATH/pm_tasks_master.csv')
project_id = 'proj-xxxx' # ID of the created project
task_list = [
('Research', 'Gather information', 2),
('Planning', 'Define approach', 1),
('Implementation', 'Do the work', 5),
('Testing', 'Verify results', 1),
]
for i, (name, desc, hours) in enumerate(task_list):
new_task = {
'task_id': f'task-{uuid.uuid4().hex[:4]}',
'project_id': project_id,
'parent_task_id': '',
'task_name': name,
'description': desc,
'status': 'todo',
'priority': 'medium',
'priority_score': 0.5,
'assignee': 'Ivan',
'created_date': str(date.today()),
'last_updated': str(date.today()),
'deadline': '',
'estimated_hours': hours,
'actual_hours': 0,
'actual_tokens': 0,
'blocked_by': '',
'blocking': '',
'order_index': i + 1
}
tasks = pd.concat([tasks, pd.DataFrame([new_task])], ignore_index=True)
tasks.to_csv('$PM_PATH/pm_tasks_master.csv', index=False)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 120 lines · 8 tokens per session scan A 841da33d13c2
create-project is a skill published in the GitHub repository aAAaqwq/AGI-Super-Team (91 stars, last pushed 3d ago), licensed MIT. It adds 8 tokens to every session and 813 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other skills, from other repositories
mission-control
Interact with Mission Control — AI agent orchestration dashboard. Use when registering agents, managing tasks, syncing skills, or querying agent/task status via MC APIs.
triage
Triage a GitHub repository's open issues by finding exact duplicates, rejecting evidenceably off-base requests, requesting concrete clarification, applying only existing labels, and opening a linked root-cause issue when multiple reports share one underlying invariant failure. Use when a maintainer asks to triage…
aigon-board
Show Kanban board or list view.
aigon-next
Suggest the most likely next workflow action based on current context.
flo
MoFlo ticket spell - analyze and execute GitHub issues.
aigon-feature-prioritise
Prioritise feature - assigns ID, moves to backlog.