future — framework future, community, framework, ide skills, python, Claude Code, Cursor, Windsurf

v1.0.0

关于此技能

A web framework for building products with Python.

# 核心主题

dropseed dropseed
[654]
[13]
更新于: 3/30/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 3/11

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

Quality floor passed for review
Review Score
3/11
Quality Score
50
Canonical Locale
en
Detected Body Locale
en

A web framework for building products with Python.

核心价值

A web framework for building products with Python.

适用 Agent 类型

Suitable for operator workflows that need explicit guardrails before installation and execution.

赋予的主要能力 · future

! 使用限制与门槛

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The page lacks a strong recommendation layer.
  • - The page lacks concrete use-case guidance.
  • - The page lacks explicit limitations or caution signals.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

实验室 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

future 是什么?

A web framework for building products with Python.

如何安装 future?

运行命令:npx killer-skills add dropseed/plain/future。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

future 支持哪些 IDE 或 Agent?

该技能兼容 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。可使用 Killer-Skills CLI 一条命令通用安装。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add dropseed/plain/future。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    future 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

future

A web framework for building products with Python.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Future

The future/ directory is a knowledge graph of where Plain is headed.

Structure

future/
  postgres-first-data-layer/
    ARC.md                            # vision + numbered sequence
    models-explicit-create-update.md
    ...
  real-time-server/
    ARC.md
    server-h2-websockets.md
    ...
  • Arc directories — narrative groupings, the big stories of where Plain is headed
  • ARC.md — each arc's vision and numbered sequence of futures
  • Future files — each one describes a possible future state of the project

Every future must belong to an arc — no top-level orphan files. If a future doesn't fit an existing arc, create a new arc for it.

Futures

Individual markdown files with optional YAML frontmatter:

yaml
1--- 2branch: pool 3related: 4 - server-performance 5depends_on: 6 - db-connection-pool 7--- 8 9# Title 10 11Content...

Frontmatter fields

  • branch (optional): git branch with work-in-progress for this future. One branch per future — if a future needs multiple branches, split the future.
  • related (optional): linked futures — conceptual connections (bidirectional)
  • depends_on (optional): hard dependency — this future is blocked until the dependency is done. Mostly used for cross-arc blocks.

Naming

  • Don't prefix filenames with plain- — use models-cursor-paginator.md not plain-models-cursor-paginator.md
  • related and depends_on reference filenames without .md

Arcs

Arc membership is determined by directory. Each arc directory contains an ARC.md with:

  1. Vision — what Plain looks like at the end of this arc
  2. Sequence — checklist of linked futures in intended order (place near the top, right after the vision)

Format: - [ ] [future-name](future-name.md) — checked when done. The sequence is the editorial ordering — "this is the path we'd like to take." depends_on is for hard blocks that can't be reordered. Any deeper context (research, references, industry analysis) goes after the sequence.

Current arcs:

  • migration-rethink — convergence, migration safety, migration format
  • model-api — explicit create/persist, PK prevention, default querysets
  • related-fields — descriptor consolidation, deferred FK loading, N+1 prevention
  • query-api — typed query interface, cursor pagination
  • postgres-native — connection pooling, psycopg3, native schema, FTS, DB-level ON DELETE
  • field-api — field parameter cleanup (choices, max_length, enums)
  • real-time-server — HTTP/2, websockets, realtime, performance
  • production-hardening — security, compliance, operational maturity
  • uncategorized — futures that don't belong to a specific arc yet

Scripts

Run via .claude/skills/future/future <command>:

CommandPurpose
nextUnblocked futures sorted by downstream impact (default)
graphFull dependency tree from roots to leaves
listAll futures with status (root/ready/blocked)
show <name>Details for one future (partial match ok)
arcsList all arcs with futures in sequence order

All commands support --json for structured output.

Filters

  • list --arc <term> — filter by arc (e.g. postgres, server)
  • list --search <term> — search titles and filenames

Presenting results

Always summarize command output for the user. The raw terminal output is not visible to them. After running any script command, present the results in your own words using markdown — describe what the data shows, highlight key patterns (blocked items, cross-arc dependencies, what's next), and provide context. Don't just run a command and stop.

Workflow

When the user asks about priorities or what to do next:

  1. Run arcs to see the full picture — all arcs with futures in sequence order
  2. Run next to see unblocked futures ranked by impact
  3. Use show <name> to dive into a specific future's dependencies and context
  4. Read the actual future file for the full content
  5. Present a summary to the user — describe each arc, what's blocked and why, and what's actionable

When the user asks to start working on a future:

  1. Run show <name> to check dependencies and status
  2. Read the future file for full context
  3. Read the arc's ARC.md for the broader vision
  4. Read any related or depends_on futures that provide useful background
  5. Proceed with implementation

When a future is completed:

  1. Delete the future file
  2. If the entire arc is complete (all futures done), delete the arc directory
  3. Clean up related and depends_on references to deleted futures in other files
  4. Update the arc list in this skill if an arc was removed

When creating a new future:

  1. Place it in an arc directory — every future must belong to an arc. If no arc fits, create a new one.
  2. Add it to the arc's ARC.md sequence in the right position
  3. Add related to link conceptually connected futures
  4. Add depends_on only for hard cross-arc blocks

相关技能

寻找 future 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

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

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具