Within the logical core of Prolog, there shouldn't be any distinction between unique and duplicated rules; person(peter) is provable or it isn't, and that's the only question that (pure) Prolog can ask.
But stepping outside the logical core, there's a lot more you can do, like arithmetic, and I/O, and tearing your database apart at runtime. That last one comes in especially handy here, since it means we can erase the rule person(bob). from the database and then check if it's still provable.
First, to make rules modifiable, we need to declare the functor as dynamic:
:- dynamic person/1.
person(peter).
person(bob).
person(amanda).
With that done, we can use retract(person(bob)) to remove a rule, and assert(person(bob)) to put it back.
Now, if you don't mind trashing your database, all it takes is:
has_duplicates :- person(X), retract(person(X)), person(X).
But we probably want to leave everything the way we found it, so we'll need to jump through a few hoops:
has_duplicates :- person(X), retract(person(X)), assert(backup(X)), person(X), restore.
has_duplicates :- restore, fail.
restore :- backup(X), retract(backup(X)), assert(person(X)), fail.
restore :- true.