PHPackages                             sitegeist/noderobis - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. sitegeist/noderobis

ActiveNeos-package

sitegeist/noderobis
===================

v2.0.0(2y ago)1011.7k↓48.6%23GPL-3.0-or-laterPHPPHP ^8.2

Since Nov 3Pushed 1y ago4 watchersCompare

[ Source](https://github.com/sitegeist/Sitegeist.Noderobis)[ Packagist](https://packagist.org/packages/sitegeist/noderobis)[ RSS](/packages/sitegeist-noderobis/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (7)Dependencies (5)Versions (20)Used By (3)

Sitegeist.Noderobis
===================

[](#sitegeistnoderobis)

Cli-kickstarter for Neos CMS - NodeTypes
----------------------------------------

[](#cli-kickstarter-for-neos-cms---nodetypes)

### Authors &amp; Sponsors

[](#authors--sponsors)

- Melanie Wüst -
- Martin Ficzel -

*The development and the public-releases of this package is generously sponsored by our employer .*

Installation
------------

[](#installation)

Sitegeist.Noderobis is available via packagist and can be installed with the command `composer require sitegeist/noderobis`.

We use semantic-versioning so every breaking change will increase the major-version number.

Usage
-----

[](#usage)

The package offers cli commands to define new nodetypes. The commands will create a `NodeTypes/*.yaml` file and a `NodeTypes/*.fusion` renderer (for non abstract nodetypes) that renders all properties and children via afx.

```
PACKAGE "SITEGEIST.NODEROBIS":
-------------------------------------------------------------------------------
  kickstart:document
  kickstart:content
  kickstart:mixin

```

### Commands to create Document|Content|Mixin NodeTypes

[](#commands-to-create-documentcontentmixin-nodetypes)

```
./flow kickstart:document []
./flow kickstart:content []
./flow kickstart:mixin []

ARGUMENTS:
  --name               Node Name, last part of NodeType

OPTIONS:
  --package-key        (optional) Package, uses fallback from configuration
  --mixin              (optional) Mixin-types to add as SuperTypes, can be used
                       multiple times
  --child-node         (optional) childNode-names and childNode-NodeType
                       seperated by a colon, can be used multiple times
  --property           (optional) property-names and property-NodeType
                       seperated by a colon, can be used multiple times
  --abstract           (optional) By default contents and documents are created
                       non abstract
  --yes                (optional) Skip refinement-process and apply all
                       modifications directly

```

### Specification refinement

[](#specification-refinement)

The create commands will call an interactive refinement process after the initial specification is created. This will allow to specify additional properties, mixins etc. as it would be very tedious to put all this into a single cli-call.

```
Vendor.Example:Document.Article
  SuperTypes: Neos.Neos:Document

What is next?
  [0] FINISH and generate files
  [1] add Label
  [2] add Icon
  [3] add Property
  [4] add ChildNode
  [5] add SuperType
  [6] add Mixin
  [7] make Abstract
  [8] exit
 >

```

The refinement shows a summary of the specification so far and offers to make adjustments. Once you are satisfied you choose "FINISH and generate files" to trigger the generation process.

Configuration
-------------

[](#configuration)

The package allows to configure defaults for packageKeys, superTypes and the generated fusion code for each property type.

```
Sitegeist:
  Noderobis:
    # package key to be used by default if none is specified
    defaultPackageKey: ~

    # default supertypes for nodetypes when no supertype is found in the package namespace
    superTypeDefaults:
      Document: Neos.Neos:Document
      Content: Neos.Neos:Content

    # modification generators that will be applied
    modificationGenerators:
      createNodeTypeYamlFile: '\Sitegeist\Noderobis\Domain\Generator\CreateNodeTypeYamlFileModificationGenerator'
      createFusionRenderer: '\Sitegeist\Noderobis\Domain\Generator\CreateFusionRendererModificationGenerator'
      includeFusionFromNodeTypes: '\Sitegeist\Noderobis\Domain\Generator\IncludeFusionFromNodeTypesModificationGenerator'

    # configuration for accessing and rendering properties in fusion the key `default` is used if no special
    # config is found for a type
    properties:
      'default':
        prop: '###NAME### = ${q(node).property("###NAME###")}'
        afx: '{String.htmlSpecialChars(Json.serialize(props.###NAME###))}'
      'inlineEditable':
        afx: ''
      'Neos\Media\Domain\Model\ImageInterface':
        afx: ''
      'Neos\Media\Domain\Model\Asset':
        afx: '{props.###NAME###.label}'
      'array':
        afx: '{asset.label}'
      'DateTime':
        afx: '{Date.format(props.###NAME### , "Y-m-d")}'
      'reference':
        afx: '{props.###NAME###.label}'
      'references':
        afx: '{reference.label}'
      'string':
        afx: '{props.###NAME###}'
      'integer':
        afx: '{props.###NAME###}'
      'boolean':
        afx: '{props.###NAME### ? "true" : "false"}'
```

### Configuration to support Sitegeist.Kaleidoscope

[](#configuration-to-support-sitegeistkaleidoscope)

The following Settings.yaml adjusts the generated code for `Neos\Media\Domain\Model\ImageInterface` props to use the [Sitegeist.Kaleidoscope](https://github.com/sitegeist/Sitegeist.Kaleidoscope) package.

```
Sitegeist:
  Noderobis:
    properties:

      # Adjust generation of Image props to render using Sitegeist.Kaleidoscope
      # with fallback to a dummy image in backend
      'Neos\Media\Domain\Model\ImageInterface':
        prop: |
          ###NAME### = Neos.Fusion:Case {
              image {
                  condition = ${q(node).property('###NAME###')}
                  renderer = Sitegeist.Kaleidoscope:AssetImageSource {
                      asset = ${q(node).property('###NAME###')}
                      # @todo !!! ensure property ###NAME###Title really exists
                      title = ${q(node).property('###NAME###Title')}
                      # @todo !!! ensure property ###NAME###Alt really exists
                      alt = ${q(node).property('###NAME###Alt')}
                  }
              }
              dummyImage {
                  condition = ${node.context.inBackend}
                  renderer = Sitegeist.Kaleidoscope:DummyImageSource {
                      alt = "dummy"
                      title = "image"
                  }
              }
          }
        afx: ''
```

How it works
------------

[](#how-it-works)

The package will firstly use the cli process to generate a `NodeTypeSpecification` value-object. This specification is used to create a `NodeType` object. This object is then used to generate the needed `NodeTypes/*.yaml` file and a `NodeTypes/*.fusion` file for rendering.

Contribution
------------

[](#contribution)

We will gladly accept contributions. Please send us pull requests.

###  Health Score

42

—

FairBetter than 88% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community21

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 92.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~106 days

Recently: every ~152 days

Total

9

Last Release

466d ago

Major Versions

v1.3.0 → v2.0.02023-08-28

PHP version history (2 changes)v1.0.0PHP ^8.1

v2.0.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/51e0a02d8e12b73949ec858638aa7e295e103022cc5a879f86ac8532c2c170bd?d=identicon)[sitegeist](/maintainers/sitegeist)

![](https://www.gravatar.com/avatar/829b4ccb51e8cff3c1e4b59d60cfe8d1b86f6d77fc31a6b3fc99227f432542ca?d=identicon)[mficzel](/maintainers/mficzel)

---

Top Contributors

[![mficzel](https://avatars.githubusercontent.com/u/1309380?v=4)](https://github.com/mficzel "mficzel (75 commits)")[![mwuest](https://avatars.githubusercontent.com/u/3205472?v=4)](https://github.com/mwuest "mwuest (5 commits)")[![nezaniel](https://avatars.githubusercontent.com/u/1687674?v=4)](https://github.com/nezaniel "nezaniel (1 commits)")

---

Tags

neoscmsnodetype

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/sitegeist-noderobis/health.svg)

```
[![Health](https://phpackages.com/badges/sitegeist-noderobis/health.svg)](https://phpackages.com/packages/sitegeist-noderobis)
```

###  Alternatives

[neos/neos-ui

Neos CMS UI written in React

2681.1M120](/packages/neos-neos-ui)[neos/neos-base-distribution

Neos Base Distribution

4366.0k](/packages/neos-neos-base-distribution)[neos/demo

Site package for the Neos Demo Site

18188.3k10](/packages/neos-demo)[neos/seo

SEO configuration and tools for Neos

141.0M31](/packages/neos-seo)[neos/form-builder

Flow Form Framework integration into Neos CMS

19364.6k20](/packages/neos-form-builder)[sitegeist/kaleidoscope

Responsive-images for Neos

29370.3k12](/packages/sitegeist-kaleidoscope)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
