Project Timeline — community Project Timeline, CLAUDE_CODE_EXPLORE, community, ide skills

v1.0.0

About this Skill

Perfect for CLI-based Agents needing advanced project timeline management capabilities. Systematic checklist execution (CLI-based) (project)

derekcrosslu derekcrosslu
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
36
Canonical Locale
en
Detected Body Locale
en

Perfect for CLI-based Agents needing advanced project timeline management capabilities. Systematic checklist execution (CLI-based) (project)

Core Value

Empowers agents to manage project timelines using the CLI, providing features like getting the next task and marking checklist items as complete, utilizing Python scripts and command-line interfaces.

Ideal Agent Persona

Perfect for CLI-based Agents needing advanced project timeline management capabilities.

Capabilities Granted for Project Timeline

Automating task progression with `next` command
Marking checklist items as complete with CLI commands
Checking project progress with `timeline_cli.py`

! Prerequisites & Limits

  • Requires Python environment setup
  • CLI access needed
  • Python script execution required

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is Project Timeline?

Perfect for CLI-based Agents needing advanced project timeline management capabilities. Systematic checklist execution (CLI-based) (project)

How do I install Project Timeline?

Run the command: npx killer-skills add derekcrosslu/CLAUDE_CODE_EXPLORE/Project Timeline. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for Project Timeline?

Key use cases include: Automating task progression with `next` command, Marking checklist items as complete with CLI commands, Checking project progress with `timeline_cli.py`.

Which IDEs are compatible with Project Timeline?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for Project Timeline?

Requires Python environment setup. CLI access needed. Python script execution required.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add derekcrosslu/CLAUDE_CODE_EXPLORE/Project Timeline. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use Project Timeline immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

Project Timeline

Install Project Timeline, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Project Timeline CLI

Manage project timeline with CLI: venv/bin/python SCRIPTS/timeline_cli.py (use as timeline)

When to Load This Skill

  • Starting a new work session (get next task)
  • Completing any checklist item (mark complete)
  • Unsure what to work on next
  • Checking progress

CLI Commands

Get Next Task

bash
1# What should I work on? 2venv/bin/python SCRIPTS/timeline_cli.py next 3 4# Next task in week 1 5venv/bin/python SCRIPTS/timeline_cli.py next --week 1 6 7# Next task in test section 8venv/bin/python SCRIPTS/timeline_cli.py next --section test 9 10# JSON output 11venv/bin/python SCRIPTS/timeline_cli.py next --json

Mark Complete

bash
1# Mark done + automatic git commit 2venv/bin/python SCRIPTS/timeline_cli.py complete w1-test-003 3 4# Mark done without commit 5venv/bin/python SCRIPTS/timeline_cli.py complete w1-test-003 --no-commit 6 7# Custom commit message 8venv/bin/python SCRIPTS/timeline_cli.py complete w1-test-003 -m "Custom message"

Check Status

bash
1# Current week progress 2venv/bin/python SCRIPTS/timeline_cli.py status 3 4# JSON output 5venv/bin/python SCRIPTS/timeline_cli.py status --json

Find Tasks

bash
1# All pending tasks 2venv/bin/python SCRIPTS/timeline_cli.py find --status pending 3 4# Week 1 tasks 5venv/bin/python SCRIPTS/timeline_cli.py find --week 1 6 7# Completed tasks in test section 8venv/bin/python SCRIPTS/timeline_cli.py find --status completed --section test 9 10# First 5 tasks 11venv/bin/python SCRIPTS/timeline_cli.py find --limit 5

Workflow

  1. Start Session: timeline next → Get next pending task
  2. Do Work: Implement/test/document
  3. Complete: timeline complete TASK_ID → Updates JSON + git commit
  4. Push: git push (if configured)

Core Principles

Priority 1: Complete the Framework

Establish baseline → Research dependencies → Complete framework logic

Focus on building complete system first:

  • ✅ All commands exist and work
  • ✅ All wrappers exist and work
  • ✅ All skills exist
  • ✅ State machine works
  • ✅ Integration works end-to-end

DO NOT get distracted by:

  • Testing multiple hypotheses (1-2 validates system)
  • Optimizing performance (works first, fast second)
  • Adding features not in checklist
  • Extensive documentation (minimal docs, focus on code)

Priority 2: Validate the Framework

Validate logic paths → Test robustness → Calibrate thresholds

Only after Priority 1 complete:

  • Test decision framework with diverse scenarios
  • Measure false positive/negative rates
  • Calibrate thresholds
  • Validate reliability

Robustness is meaningless without completeness.

Authoritative Documentation (Source of Truth)

When confused about workflow, phases, or decisions:

  • Read: PROJECT_DOCUMENTATION/autonomous_decision_framework.md
  • Contains: 5-phase workflow, decision thresholds, routing logic

When confused about architecture or how components fit:

  • Read: PREVIOUS_WORK/PROJECT_DOCUMENTATION/autonomous_workflow_architecture.md
  • Contains: Complete system architecture, state machine, integration patterns

Never guess. Always research first. Use authoritative docs as source of truth.

CLI Help

Use --help for command details:

bash
1venv/bin/python SCRIPTS/timeline_cli.py --help 2venv/bin/python SCRIPTS/timeline_cli.py next --help 3venv/bin/python SCRIPTS/timeline_cli.py complete --help

Do not read timeline_cli.py source code. Use --help for usage.


Context Savings: 60 lines (vs 631 lines in old skill) = 90% reduction

Progressive Disclosure: Load only what you need (next task, not entire timeline)

Trifecta: CLI works for humans, teams, AND agents

Related Skills

Looking for an alternative to Project Timeline or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer