atomnote 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
atomnote-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: atomnote
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Atomic notes: typed, schema-checked markdown atoms; the note command and its MCP tools. Name reserved; the tool follows.
|
|
5
|
+
Author: Mike Bailey
|
|
6
|
+
Classifier: Development Status :: 1 - Planning
|
|
7
|
+
Requires-Dist: click>=8.1
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# atomnote
|
|
12
|
+
|
|
13
|
+
Atomic notes: typed, schema-checked markdown atoms; the note command and its MCP tools
|
|
14
|
+
|
|
15
|
+
## Quick start
|
|
16
|
+
|
|
17
|
+
<!-- The one command that shows it working, and what you see. -->
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
|
|
21
|
+
<!-- How it gets onto a machine. -->
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
<!-- The verbs, or a link to `atomnote --help`. -->
|
|
26
|
+
|
|
27
|
+
## Development
|
|
28
|
+
|
|
29
|
+
<!-- How to run it from a checkout and how to test it. -->
|
|
30
|
+
|
|
31
|
+
## Status
|
|
32
|
+
|
|
33
|
+
**0.0.1 reserves the name.** Nothing works yet. The `note` command moves here
|
|
34
|
+
next, from skillbox's slipbox skill, where it runs today: it reads and writes
|
|
35
|
+
atomic markdown notes for the slipbox and for task stores, and serves them as
|
|
36
|
+
MCP tools (`note mcp`). The command stays `note`; `atomnote` is the package.
|
atomnote-0.0.1/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# atomnote
|
|
2
|
+
|
|
3
|
+
Atomic notes: typed, schema-checked markdown atoms; the note command and its MCP tools
|
|
4
|
+
|
|
5
|
+
## Quick start
|
|
6
|
+
|
|
7
|
+
<!-- The one command that shows it working, and what you see. -->
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
<!-- How it gets onto a machine. -->
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
<!-- The verbs, or a link to `atomnote --help`. -->
|
|
16
|
+
|
|
17
|
+
## Development
|
|
18
|
+
|
|
19
|
+
<!-- How to run it from a checkout and how to test it. -->
|
|
20
|
+
|
|
21
|
+
## Status
|
|
22
|
+
|
|
23
|
+
**0.0.1 reserves the name.** Nothing works yet. The `note` command moves here
|
|
24
|
+
next, from skillbox's slipbox skill, where it runs today: it reads and writes
|
|
25
|
+
atomic markdown notes for the slipbox and for task stores, and serves them as
|
|
26
|
+
MCP tools (`note mcp`). The command stays `note`; `atomnote` is the package.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "atomnote"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Atomic notes: typed, schema-checked markdown atoms; the note command and its MCP tools. Name reserved; the tool follows."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [{ name = "Mike Bailey" }]
|
|
7
|
+
classifiers = ["Development Status :: 1 - Planning"]
|
|
8
|
+
requires-python = ">=3.11"
|
|
9
|
+
dependencies = [
|
|
10
|
+
"click>=8.1",
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
[project.scripts]
|
|
14
|
+
atomnote = "atomnote.cli:main"
|
|
15
|
+
|
|
16
|
+
[build-system]
|
|
17
|
+
requires = ["uv_build>=0.11.9,<0.12.0"]
|
|
18
|
+
build-backend = "uv_build"
|
|
19
|
+
|
|
20
|
+
[dependency-groups]
|
|
21
|
+
dev = [
|
|
22
|
+
"pytest>=8",
|
|
23
|
+
"ruff>=0.6",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[tool.pytest.ini_options]
|
|
27
|
+
testpaths = ["tests"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""atomnote - Atomic notes: typed, schema-checked markdown atoms; the note command and its MCP tools"""
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""atomnote - the front door. Help first: every verb is here before it works."""
|
|
2
|
+
from __future__ import annotations
|
|
3
|
+
|
|
4
|
+
import click
|
|
5
|
+
|
|
6
|
+
CTX = {"help_option_names": ["-h", "--help"]}
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@click.group(context_settings=CTX, invoke_without_command=True)
|
|
10
|
+
@click.pass_context
|
|
11
|
+
def main(ctx: click.Context) -> None:
|
|
12
|
+
"""atomnote - Atomic notes: typed, schema-checked markdown atoms; the note command and its MCP tools"""
|
|
13
|
+
if ctx.invoked_subcommand is None:
|
|
14
|
+
click.echo(ctx.get_help())
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
@main.command(context_settings=CTX)
|
|
18
|
+
def hello() -> None:
|
|
19
|
+
"""Say hello - the stub every verb starts as."""
|
|
20
|
+
click.echo("Hello from atomnote!")
|
|
File without changes
|