create-project

create-project is a skill for Claude Code from aAAaqwq/AGI-Super-Team. It costs 8 tokens per session (813 once invoked), scanned A, original, MIT.

A project-creation workflow that records a new project and breaks it into tasks in shared project-management files.

In plain words
What is it for?
Use it to start projects, define their goals and deadlines, and add an initial task breakdown.
Why use it?
It turns a broad initiative into a tracked project with an owner, status, priority, dates, and estimated work.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the agi-super-team plugin — 192 skills, 1 agent shipped together

Good fit Use it to start projects, define their goals and deadlines, and add an initial task breakdown.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aaaaqwq/agi-super-team/create-project
Install

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.

Any agent
npx skills add aAAaqwq/AGI-Super-Team --skill create-project
Clone the repo
git clone --depth 1 https://github.com/aAAaqwq/AGI-Super-Team

Made for: Claude Code.

Or install agi-super-team, the plugin that ships this one along with the rest of its 192 skills, 1 agent.

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

agentmods badge for create-project

README.md
[![agentmods](https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/create-project.svg)](https://agentmods.dev/skills/aaaaqwq/agi-super-team/create-project)
Your own site
<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>
Per session 8 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 813 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 2d ago against content hash 841da33d13c2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

skills/create-project/SKILL.md · 120 lines

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)

Read the full file on GitHub · 120 lines

Changes

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.

  1. 2d ago First seen · 120 lines · 8 tokens per session scan A 841da33d13c2

Subscribe to this mod's changes

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.